From: Luke Kenneth Casson Leighton Date: Wed, 8 Dec 2021 12:47:24 +0000 (+0000) Subject: add an on_Display function which is being used by some of us X-Git-Tag: sv_maxu_works-initial~652 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=49b76cb9341e885311e9d1f848f0559039c15427;p=openpower-isa.git add an on_Display function which is being used by some of us for debugging purposes (needs a patch, normally would not be needed but because this is low-level a dummy on_Display has to be provided) --- diff --git a/src/openpower/decoder/test/_pyrtl.py b/src/openpower/decoder/test/_pyrtl.py index b6c3ff1f..45392636 100644 --- a/src/openpower/decoder/test/_pyrtl.py +++ b/src/openpower/decoder/test/_pyrtl.py @@ -386,6 +386,9 @@ class _StatementCompiler(StatementVisitor, _Compiler): with self.emitter.nest(): self(stmts) + def on_Display(self, stmt): + raise NotImplementedError # :nocov: + def on_Assert(self, stmt): raise NotImplementedError # :nocov: