tools/litex_sim: Fix mem_map.
This commit is contained in:
parent
e0e9311ceb
commit
cb7b0f44cf
|
@ -98,9 +98,7 @@ class Platform(SimPlatform):
|
|||
# Simulation SoC -----------------------------------------------------------------------------------
|
||||
|
||||
class SimSoC(SoCCore):
|
||||
mem_map = {
|
||||
"spiflash" : 0x80000000,
|
||||
}
|
||||
mem_map = {**SoCCore.mem_map, **{"spiflash": 0x80000000}}
|
||||
def __init__(self,
|
||||
with_sdram = False,
|
||||
with_ethernet = False,
|
||||
|
|
Loading…
Reference in New Issue