cpu/vexriscv/mem_map_linux: move main_ram to allow up to 1GB.

This commit is contained in:
Florent Kermarrec 2020-03-23 15:35:33 +01:00
parent 63ab2ba40c
commit 4adac90d88
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ class VexRiscv(CPU, AutoCSR):
return { return {
"rom": 0x00000000, "rom": 0x00000000,
"sram": 0x10000000, "sram": 0x10000000,
"main_ram": 0xc0000000, "main_ram": 0x40000000,
"csr": 0xf0000000, "csr": 0xf0000000,
} }