Add class for combining multiple instruction classes
[soc.git] / src / soc / decoder / isa / __init__.py
1 from fixedarith import fixedarith
2 from fixedload import fixedload
3
4
5 class ISA(fixedarith, fixedload):
6 pass