From: Luke Kenneth Casson Leighton Date: Mon, 30 Aug 2021 11:36:54 +0000 (+0100) Subject: missed valid/ready_i/o to o/i_ conversion X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e341960a4fc0744c40d596fa217a8332e8ee5442;p=soc.git missed valid/ready_i/o to o/i_ conversion --- diff --git a/src/soc/fu/mul/test/helper.py b/src/soc/fu/mul/test/helper.py index 7266223a..ec56e1fe 100644 --- a/src/soc/fu/mul/test/helper.py +++ b/src/soc/fu/mul/test/helper.py @@ -96,9 +96,9 @@ class MulTestHelper(unittest.TestCase): has_third_input) # set valid for one cycle, propagate through pipeline... - yield alu.p.valid_i.eq(1) + yield alu.p.i_valid.eq(1) yield - yield alu.p.valid_i.eq(0) + yield alu.p.i_valid.eq(0) opname = code.split(' ')[0] fnname = opname.replace(".", "_") @@ -118,11 +118,11 @@ class MulTestHelper(unittest.TestCase): index = isa_sim.pc.CIA.value//4 # ...wait for valid to pop out the end - vld = yield alu.n.valid_o + vld = yield alu.n.o_valid while not vld: yield yield Delay(0.1e-6) - vld = yield alu.n.valid_o + vld = yield alu.n.o_valid yield Delay(0.1e-6) # XXX sim._engine is an internal variable @@ -152,7 +152,7 @@ class MulTestHelper(unittest.TestCase): m.submodules.alu = alu = MulBasePipe(pspec) comb += alu.p.i_data.ctx.op.eq_from_execute1(pdecode2.do) - comb += alu.n.ready_i.eq(1) + comb += alu.n.i_ready.eq(1) comb += pdecode2.dec.raw_opcode_in.eq(instruction) sim = Simulator(m)