mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
soc/integration/soc_core: use cpu_reset_address = self.mem_map["rom"] when using integrated_rom
This commit is contained in:
parent
67645ce7dd
commit
de336a86e5
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ class SoCCore(Module):
|
||||||
|
|
||||||
self.cpu_type = cpu_type
|
self.cpu_type = cpu_type
|
||||||
if integrated_rom_size:
|
if integrated_rom_size:
|
||||||
cpu_reset_address = 0
|
cpu_reset_address = self.mem_map["rom"]
|
||||||
self.cpu_reset_address = cpu_reset_address
|
self.cpu_reset_address = cpu_reset_address
|
||||||
|
|
||||||
self.integrated_rom_size = integrated_rom_size
|
self.integrated_rom_size = integrated_rom_size
|
||||||
|
|
Loading…
Reference in a new issue