cpu/zynq7000: set csr map to 0x00000000.

This commit is contained in:
Florent Kermarrec 2020-07-30 21:37:25 +02:00
parent c0253e3f77
commit 3ff1bcaf05
1 changed files with 4 additions and 0 deletions

View File

@ -24,6 +24,10 @@ class Zynq7000(CPU):
nop = "nop"
io_regions = {0x00000000: 0x100000000} # origin, length
@property
def mem_map(self):
return {"csr": 0x00000000}
def __init__(self, platform, variant):
self.platform = platform
self.reset = Signal()