projects
/
litex.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6fe3e12
)
gen/sim/core: add Display support
author
Florent Kermarrec
<florent@enjoy-digital.fr>
Wed, 18 May 2016 13:47:10 +0000
(15:47 +0200)
committer
Florent Kermarrec
<florent@enjoy-digital.fr>
Wed, 18 May 2016 13:47:10 +0000
(15:47 +0200)
litex/gen/sim/core.py
patch
|
blob
|
history
diff --git
a/litex/gen/sim/core.py
b/litex/gen/sim/core.py
index e408f99723de2c16a9759a248f88d8f5f135f8cc..27e8f13fb32714d1e65702a70b9acc21de1d2efb 100644
(file)
--- 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