5 lines
159 B
Python
5 lines
159 B
Python
|
from collections import namedtuple
|
||
|
|
||
|
RISCVFormalParameters = namedtuple('RISCVFormalParameters',
|
||
|
['ilen', 'xlen', 'csr_misa', 'compressed', 'aligned_mem'])
|