Move combination class out of __init__
authorMichael Nolan <mtnolan2640@gmail.com>
Sun, 5 Apr 2020 18:25:13 +0000 (14:25 -0400)
committerMichael Nolan <mtnolan2640@gmail.com>
Sun, 5 Apr 2020 18:25:52 +0000 (14:25 -0400)
src/soc/decoder/isa/__init__.py
src/soc/decoder/isa/all.py [new file with mode: 0644]

index 8f5f9f2a7cca983c183e99b82c6affc5fb3a3c98..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 100644 (file)
@@ -1,6 +0,0 @@
-from fixedarith import fixedarith
-from fixedload import fixedload
-
-
-class ISA(fixedarith, fixedload):
-    pass
diff --git a/src/soc/decoder/isa/all.py b/src/soc/decoder/isa/all.py
new file mode 100644 (file)
index 0000000..2cd59a0
--- /dev/null
@@ -0,0 +1,8 @@
+from fixedarith import fixedarith
+from fixedload import fixedload
+from fixedstore import fixedstore
+
+
+
+class ISA(fixedarith, fixedload, fixedstore):
+    pass