From ac97815619ff46d7f714b869a725d78723a5728b Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Sat, 24 May 2014 11:29:03 +0200 Subject: [PATCH] targets/simple: pass kwargs --- targets/simple.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/targets/simple.py b/targets/simple.py index 2de3baed..2f4d3734 100644 --- a/targets/simple.py +++ b/targets/simple.py @@ -60,10 +60,10 @@ class _CRG(Module): class SimpleSoC(SDRAMSoC): default_platform = "papilio_pro" - def __init__(self, platform): + def __init__(self, platform, **kwargs): clk_freq = 80*1000*1000 SDRAMSoC.__init__(self, platform, clk_freq, - cpu_reset_address=0x160000) + cpu_reset_address=0x160000, **kwargs) self.submodules.crg = _CRG(platform, clk_freq) -- 2.30.2