From: Michael Nolan Date: Sun, 5 Apr 2020 18:25:13 +0000 (-0400) Subject: Move combination class out of __init__ X-Git-Tag: div_pipeline~1478 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4b747f69b0b8b2061fdbebbb35baf03c2a73ad0c;p=soc.git Move combination class out of __init__ --- 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