From: Florent Kermarrec Date: Wed, 18 May 2016 13:47:10 +0000 (+0200) Subject: gen/sim/core: add Display support X-Git-Tag: 24jan2021_ls180~1942 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=65f74959b3ca817616d7b77cc4995b190e12fbc8;p=litex.git gen/sim/core: add Display support --- diff --git a/litex/gen/sim/core.py b/litex/gen/sim/core.py index e408f997..27e8f13f 100644 --- a/litex/gen/sim/core.py +++ b/litex/gen/sim/core.py @@ -212,6 +212,8 @@ class Evaluator: self.execute(s.cases["default"]) elif isinstance(s, collections.Iterable): self.execute(s) + elif isinstance(s, Display): + print(s.s) else: raise NotImplementedError