machinetnt: fix default RAM allocation.

This commit is contained in:
Maxim Poliakovski 2022-11-17 13:07:08 +01:00
parent 9835b96e87
commit 447941abe0

View File

@ -60,8 +60,8 @@ int initialize_tnt(std::string& id)
return -1; return -1;
} }
// plug 8MB RAM DIMM into slot #0 // plug 16MB RAM DIMM into slot #0
memctrl_obj->insert_ram_dimm(2, DRAM_CAP_16MB); memctrl_obj->insert_ram_dimm(0, DRAM_CAP_16MB);
// allocate and map physical RAM // allocate and map physical RAM
memctrl_obj->map_phys_ram(); memctrl_obj->map_phys_ram();