cpu/vexriscv/mem_map_linux: update main_ram to 0x40000000

This commit is contained in:
Florent Kermarrec 2020-01-13 14:40:26 +01:00
parent fe14b9cf86
commit 6e3f25a7e0
1 changed files with 1 additions and 1 deletions

View File

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