mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
targets/ppro: fix BIOS address
This commit is contained in:
parent
3eabec28cd
commit
7b10f1821f
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ class BaseSoC(SDRAMSoC):
|
|||
def __init__(self, platform, **kwargs):
|
||||
clk_freq = 80*1000*1000
|
||||
SDRAMSoC.__init__(self, platform, clk_freq,
|
||||
cpu_reset_address=0x160000, **kwargs)
|
||||
cpu_reset_address=0x60000, **kwargs)
|
||||
|
||||
self.submodules.crg = _CRG(platform, clk_freq)
|
||||
|
||||
|
|
Loading…
Reference in a new issue