add SVSTATE to TestCase infrastructure for use in TestIssuer
[soc.git] / src / soc / fu / alu / alu_input_record.py
index 0b231cfda868e1a2565282bbd4bd4b4333aa6fbd..fdafee52869af4790cbeb5eba3cb592f6b4137dd 100644 (file)
@@ -13,10 +13,10 @@ class CompALUOpSubset(CompOpSubsetBase):
     def __init__(self, name=None):
         layout = (('insn_type', MicrOp),
                   ('fn_unit', Function),
-                  ('imm_data', Layout((("imm", 64), ("imm_ok", 1)))),
-                  ('rc', Layout((("rc", 1), ("rc_ok", 1)))), # Data
-                  ('oe', Layout((("oe", 1), ("oe_ok", 1)))), # Data
-                  ('invert_a', 1),
+                  ('imm_data', Layout((("data", 64), ("ok", 1)))),
+                  ('rc', Layout((("rc", 1), ("ok", 1)))), # Data
+                  ('oe', Layout((("oe", 1), ("ok", 1)))), # Data
+                  ('invert_in', 1),
                   ('zero_a', 1),
                   ('invert_out', 1),
                   ('write_cr0', 1),