From 7b10f1821fb2c3106f8d01aea22dce4dba964f7f Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Fri, 22 Aug 2014 15:24:00 +0800 Subject: [PATCH] targets/ppro: fix BIOS address --- targets/ppro.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.30.2