From a50f2c20ffa8c45b431178c1241bd9f71c0a900e Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Sat, 11 Apr 2015 21:59:29 +0800 Subject: [PATCH] targets/ppro: fix mem_map update --- soc/targets/artiq_ppro.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/soc/targets/artiq_ppro.py b/soc/targets/artiq_ppro.py index b6168fc82..867a84796 100644 --- a/soc/targets/artiq_ppro.py +++ b/soc/targets/artiq_ppro.py @@ -64,7 +64,7 @@ class UP(BaseSoC): "rtio": 0x20000000, # (shadow @0xa0000000) "dds": 0x50000000, # (shadow @0xd0000000) } - mem_map.update(MiniSoC.mem_map) + mem_map.update(BaseSoC.mem_map) def __init__(self, platform, cpu_type="or1k", with_test_gen=False, **kwargs):