cpu/vexriscv/mem_map_linux: move main_ram to allow up to 1GB.
This commit is contained in:
parent
63ab2ba40c
commit
4adac90d88
|
@ -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,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue