bit of a big reorg of data structures
[soc.git] / src / soc / fu / alu / alu_input_record.py
index 07fdb5f716e7beb3f9fa384060f846298c82b12b..fdafee52869af4790cbeb5eba3cb592f6b4137dd 100644 (file)
@@ -13,9 +13,9 @@ 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
+                  ('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),