Merge riscv_formal_parameters.py into verify.py
This commit is contained in:
parent
607d82f27c
commit
ee80bff3db
|
@ -8,7 +8,10 @@ from ...checks.liveness_check import *
|
||||||
from ...checks.unique_check import *
|
from ...checks.unique_check import *
|
||||||
from minerva.core import *
|
from minerva.core import *
|
||||||
from ...insns.isa_rv32i import *
|
from ...insns.isa_rv32i import *
|
||||||
from ...riscv_formal_parameters import *
|
from collections import namedtuple
|
||||||
|
|
||||||
|
RISCVFormalParameters = namedtuple('RISCVFormalParameters',
|
||||||
|
['ilen', 'xlen', 'csr_misa', 'compressed', 'aligned_mem'])
|
||||||
|
|
||||||
class InsnSpec(Elaboratable):
|
class InsnSpec(Elaboratable):
|
||||||
def __init__(self, insn_model):
|
def __init__(self, insn_model):
|
||||||
|
|
|
@ -1,4 +0,0 @@
|
||||||
from collections import namedtuple
|
|
||||||
|
|
||||||
RISCVFormalParameters = namedtuple('RISCVFormalParameters',
|
|
||||||
['ilen', 'xlen', 'csr_misa', 'compressed', 'aligned_mem'])
|
|
Loading…
Reference in New Issue