From: Luke Kenneth Casson Leighton Date: Sun, 5 Apr 2020 19:14:35 +0000 (+0100) Subject: effort to get base class instructions automatically X-Git-Tag: div_pipeline~1467 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5cc9acc26d3c0a7cc4fc9d65a7a6d900f16147d7;p=soc.git effort to get base class instructions automatically --- 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):