From: Jean THOMAS Date: Thu, 9 Jul 2020 13:08:12 +0000 (+0200) Subject: Disable Assert statements until they are natively supported in nMigen X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=517a4ee12c36e1bbda971386209358b4771448d5;p=gram.git Disable Assert statements until they are natively supported in nMigen --- diff --git a/gram/phy/fakephy.py b/gram/phy/fakephy.py index 274843c..7b7326f 100644 --- a/gram/phy/fakephy.py +++ b/gram/phy/fakephy.py @@ -7,7 +7,6 @@ # - add multirank support. from nmigen import * -from nmigen.asserts import Assert, Assume from nmigen.utils import log2_int from gram.common import burst_lengths @@ -26,6 +25,9 @@ SDRAM_VERBOSE_DBG = 2 def Display(*args): return Signal().eq(0) +def Assert(*args): + return Signal().eq(0) + # Bank Model --------------------------------------------------------------------------------------- class BankModel(Elaboratable):