From 4b747f69b0b8b2061fdbebbb35baf03c2a73ad0c Mon Sep 17 00:00:00 2001 From: Michael Nolan Date: Sun, 5 Apr 2020 14:25:13 -0400 Subject: [PATCH] Move combination class out of __init__ --- src/soc/decoder/isa/__init__.py | 6 ------ src/soc/decoder/isa/all.py | 8 ++++++++ 2 files changed, 8 insertions(+), 6 deletions(-) create mode 100644 src/soc/decoder/isa/all.py diff --git a/src/soc/decoder/isa/__init__.py b/src/soc/decoder/isa/__init__.py index 8f5f9f2a..e69de29b 100644 --- a/src/soc/decoder/isa/__init__.py +++ b/src/soc/decoder/isa/__init__.py @@ -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 index 00000000..2cd59a0f --- /dev/null +++ b/src/soc/decoder/isa/all.py @@ -0,0 +1,8 @@ +from fixedarith import fixedarith +from fixedload import fixedload +from fixedstore import fixedstore + + + +class ISA(fixedarith, fixedload, fixedstore): + pass -- 2.30.2