another batch of ready/valid i/o prefix-suffix swaps
[soc.git] / src / soc / fu / branch / test / test_pipe_caller.py
index 0c5b3b9573b8b7ee6bc3c555b806937e2f2854e3..0b701ae85b0ddcc550cf8f1dfe1a68a4c086d4cf 100644 (file)
@@ -74,8 +74,8 @@ class TestRunner(unittest.TestCase):
         m.submodules.branch = branch = BranchBasePipe(pspec)
 
         comb += branch.p.i_data.ctx.op.eq_from_execute1(pdecode2.do)
-        comb += branch.p.valid_i.eq(1)
-        comb += branch.n.ready_i.eq(1)
+        comb += branch.p.i_valid.eq(1)
+        comb += branch.n.i_ready.eq(1)
         comb += pdecode2.dec.raw_opcode_in.eq(instruction)
         sim = Simulator(m)