mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
targets: fix MiniSoC
This commit is contained in:
parent
e07e124118
commit
b031c5edae
2 changed files with 2 additions and 2 deletions
|
@ -131,6 +131,6 @@ class MiniSoC(BaseSoC):
|
|||
self.submodules.ethphy = LiteEthPHYGMII(platform.request("eth_clocks"), platform.request("eth"))
|
||||
self.submodules.ethmac = LiteEthMAC(phy=self.ethphy, dw=32, interface="wishbone")
|
||||
self.add_wb_slave(mem_decoder(self.mem_map["ethmac"]), self.ethmac.bus)
|
||||
self.add_cpu_memory_region("ethmac_mem", self.mem_map["ethmac"]+0x80000000, 0x2000)
|
||||
self.add_memory_region("ethmac_mem", self.mem_map["ethmac"]+0x80000000, 0x2000)
|
||||
|
||||
default_subtarget = BaseSoC
|
||||
|
|
|
@ -101,7 +101,7 @@ class MiniSoC(BaseSoC):
|
|||
self.submodules.ethphy = LiteEthPHYMII(platform.request("eth_clocks"), platform.request("eth"))
|
||||
self.submodules.ethmac = LiteEthMAC(phy=self.ethphy, dw=32, interface="wishbone")
|
||||
self.add_wb_slave(mem_decoder(self.mem_map["ethmac"]), self.ethmac.bus)
|
||||
self.add_cpu_memory_region("ethmac_mem", self.mem_map["ethmac"]+0x80000000, 0x2000)
|
||||
self.add_memory_region("ethmac_mem", self.mem_map["ethmac"]+0x80000000, 0x2000)
|
||||
|
||||
def get_vga_dvi(platform):
|
||||
try:
|
||||
|
|
Loading…
Reference in a new issue