cpu/microwatt: set csr to 0xc0000000 (IO region)
This commit is contained in:
parent
39a8ebe70c
commit
5da0bcbd7a
|
@ -21,6 +21,10 @@ class Microwatt(CPU):
|
||||||
linker_output_format = "elf64-powerpc64le"
|
linker_output_format = "elf64-powerpc64le"
|
||||||
io_regions = {0xc0000000: 0x10000000} # origin, length
|
io_regions = {0xc0000000: 0x10000000} # origin, length
|
||||||
|
|
||||||
|
@property
|
||||||
|
def mem_map(self):
|
||||||
|
return {"csr": 0xc0000000}
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def gcc_flags(self):
|
def gcc_flags(self):
|
||||||
flags = "-m64 "
|
flags = "-m64 "
|
||||||
|
|
Loading…
Reference in New Issue