From: Luke Kenneth Casson Leighton Date: Sun, 7 Jun 2020 12:16:23 +0000 (+0100) Subject: add extra missing args to ISA setup in alu test_pipe_caller X-Git-Tag: div_pipeline~509 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1a008f905ada29e4f11b6180d8fa3e642c935099;p=soc.git add extra missing args to ISA setup in alu test_pipe_caller --- diff --git a/src/soc/fu/alu/test/test_pipe_caller.py b/src/soc/fu/alu/test/test_pipe_caller.py index f3e021f4..13f059eb 100644 --- a/src/soc/fu/alu/test/test_pipe_caller.py +++ b/src/soc/fu/alu/test/test_pipe_caller.py @@ -203,7 +203,8 @@ class TestRunner(FHDLTestCase): print(test.name) program = test.program self.subTest(test.name) - simulator = ISA(pdecode2, test.regs, test.sprs, 0) + simulator = ISA(pdecode2, test.regs, test.sprs, test.cr, + test.mem, test.msr) gen = program.generate_instructions() instructions = list(zip(gen, program.assembly.splitlines()))