cpu/CPUNone: Add ethmac to mem_map as temporary build workaround for --cpu-type=None --with-ethernet.
This commit is contained in:
parent
96cfb44851
commit
a489dadfbc
|
@ -34,7 +34,7 @@ class CPUNone(CPU):
|
||||||
io_regions = {0x00000000: 0x100000000} # origin, length
|
io_regions = {0x00000000: 0x100000000} # origin, length
|
||||||
periph_buses = []
|
periph_buses = []
|
||||||
memory_buses = []
|
memory_buses = []
|
||||||
mem_map = {"csr": 0x00000000}
|
mem_map = {"csr": 0x00000000, "ethmac": 0x00020000} # FIXME: remove ethmac.
|
||||||
|
|
||||||
CPU_GCC_TRIPLE_RISCV32 = (
|
CPU_GCC_TRIPLE_RISCV32 = (
|
||||||
"riscv64-unknown-elf",
|
"riscv64-unknown-elf",
|
||||||
|
|
Loading…
Reference in New Issue