From 5cc9acc26d3c0a7cc4fc9d65a7a6d900f16147d7 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Sun, 5 Apr 2020 20:14:35 +0100 Subject: [PATCH] effort to get base class instructions automatically --- src/soc/decoder/helpers.py | 1 + src/soc/decoder/isa/all.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/soc/decoder/helpers.py b/src/soc/decoder/helpers.py index 98b3e672..65db26dd 100644 --- a/src/soc/decoder/helpers.py +++ b/src/soc/decoder/helpers.py @@ -119,4 +119,5 @@ class HelperTests(unittest.TestCase): if __name__ == '__main__': + print (SelectableInt.__bases__) unittest.main() diff --git a/src/soc/decoder/isa/all.py b/src/soc/decoder/isa/all.py index b6623fe8..e6c5fb9b 100644 --- a/src/soc/decoder/isa/all.py +++ b/src/soc/decoder/isa/all.py @@ -2,7 +2,7 @@ from caller import ISACaller from fixedarith import fixedarith from fixedload import fixedload from fixedstore import fixedstore - +from soc.decoder.isa.caller import ISACaller class ISA(ISACaller): -- 2.30.2