mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
integration/soc: Fix typo.
This commit is contained in:
parent
8d7196d567
commit
ce96668ebd
1 changed files with 1 additions and 1 deletions
|
@ -925,7 +925,7 @@ class SoC(Module):
|
|||
|
||||
# Add Bus Masters/CSR/IRQs.
|
||||
if not isinstance(self.cpu, (cpu.CPUNone, cpu.Zynq7000)):
|
||||
if hasattr(cpu, "set_reset_address"):
|
||||
if hasattr(self.cpu, "set_reset_address"):
|
||||
if reset_address is None:
|
||||
reset_address = self.mem_map["rom"]
|
||||
self.cpu.set_reset_address(reset_address)
|
||||
|
|
Loading…
Reference in a new issue