From: Michael Nolan Date: Mon, 23 Mar 2020 18:24:20 +0000 (-0400) Subject: Fix broken test X-Git-Tag: div_pipeline~1644 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d28bbb58efbfd9b30d706b957af5b945fbc42c0c;p=soc.git Fix broken test --- diff --git a/src/soc/decoder/test/test_power_decoder.py b/src/soc/decoder/test/test_power_decoder.py index 4960f442..6578fa1d 100644 --- a/src/soc/decoder/test/test_power_decoder.py +++ b/src/soc/decoder/test/test_power_decoder.py @@ -26,10 +26,13 @@ class DecoderTestCase(FHDLTestCase): rc_sel = Signal(RC) ldst_len = Signal(LdstLen) cry_in = Signal(CryIn) + bigendian = Signal() + comb += bigendian.eq(1) # opcodes = get_csv(csvname) m.submodules.dut = dut = create_pdecode() - comb += [dut.opcode_in.eq(opcode), + comb += [dut.raw_opcode_in.eq(opcode), + dut.bigendian.eq(bigendian), function_unit.eq(dut.op.function_unit), in1_sel.eq(dut.op.in1_sel), in2_sel.eq(dut.op.in2_sel),