From: Florent Kermarrec Date: Fri, 27 Feb 2015 19:00:16 +0000 (+0100) Subject: test minicon with de0nano (OK) and fix missing self in gensoc X-Git-Tag: 24jan2021_ls180~2579 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8e04ef7b95742847b586216eb76717b029c8639f;p=litex.git test minicon with de0nano (OK) and fix missing self in gensoc --- diff --git a/misoclib/gensoc/__init__.py b/misoclib/gensoc/__init__.py index fe1235c0..a9885e4d 100644 --- a/misoclib/gensoc/__init__.py +++ b/misoclib/gensoc/__init__.py @@ -245,7 +245,7 @@ class SDRAMSoC(GenSoC): # MINICON elif self.ramcon_type == "minicon": - if with_l2: + if self.with_l2: raise ValueError("MINICON does not implement L2 cache (Use LASMICON)") self.submodules.minicon = sdramcon = Minicon(phy_settings, sdram_geom, sdram_timing)