From: Sebastien Bourdeauducq Date: Fri, 22 Aug 2014 07:24:00 +0000 (+0800) Subject: targets/ppro: fix BIOS address X-Git-Tag: 24jan2021_ls180~2658 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7b10f1821fb2c3106f8d01aea22dce4dba964f7f;p=litex.git targets/ppro: fix BIOS address --- diff --git a/targets/ppro.py b/targets/ppro.py index 1ec8c513..3bd29ef2 100644 --- a/targets/ppro.py +++ b/targets/ppro.py @@ -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)