effort to get base class instructions automatically
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Sun, 5 Apr 2020 19:14:35 +0000 (20:14 +0100)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Sun, 5 Apr 2020 19:16:06 +0000 (20:16 +0100)
src/soc/decoder/helpers.py
src/soc/decoder/isa/all.py

index 98b3e672f16158f7dd54286c2a843664f1e7bab0..65db26dde1bb3f3eb366807b74d2fea73209fef8 100644 (file)
@@ -119,4 +119,5 @@ class HelperTests(unittest.TestCase):
 
 
 if __name__ == '__main__':
+    print (SelectableInt.__bases__)
     unittest.main()
index b6623fe8d642ecd0d7f0ef9f7eba2734139c77e2..e6c5fb9b6e8f3614c8f0057b3f0b1a7c9d9354ab 100644 (file)
@@ -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):