changes memeory map to be everything within the first 2GB

This commit is contained in:
2026-02-03 06:40:33 +01:00
parent a94fd67cf2
commit a0d230c5dd
3 changed files with 8 additions and 8 deletions

View File

@@ -65,8 +65,8 @@ private:
vpvper::minres::ethmac_tl eth0{"eth0"};
vpvper::minres::ethmac_tl eth1{"eth1"};
scc::memory<128_kB, scc::LT> mem_ram{"mem_ram"};
scc::memory<2_GB, scc::LT> mem_dram{"mem_dram"};
scc::memory<256_kB, scc::LT> mem_ram{"mem_ram"};
scc::memory<1_GB, scc::LT> mem_dram{"mem_dram"};
scc::memory<8_kB, scc::LT> boot_rom{"boot_rom"};
sc_core::sc_signal<sc_core::sc_time> mtime_clk{"mtime_clk"};