replace data_o with o_data and data_i with i_data as well
[soc.git] / src / soc / fu / compunits / formal / proof_fu.py
index e8a5e50fb18ae782ad1a6be7b76cca388128555a..06437df0a4e8d8e28c757470dd0fb751eb753a02 100644 (file)
@@ -149,8 +149,8 @@ class Driver(Elaboratable):
             # then the alu data should be output
             with m.If(Past(wr_rel) & Past(go_wr)):
                 # the alu data is output
-                comb += Assert((dut.data_o == alu_temp)
-                               | (dut.data_o == dut.alu.o))
+                comb += Assert((dut.o_data == alu_temp)
+                               | (dut.o_data == dut.alu.o))
                 # wr_rel is dropped
                 comb += Assert(wr_rel == 0)
                 # busy is dropped.