From: Luke Kenneth Casson Leighton Date: Sun, 7 Jun 2020 11:55:13 +0000 (+0100) Subject: add missing args to ISA X-Git-Tag: div_pipeline~512 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bc2103f0704c321d40500d7c381584fbb72daf6a;p=soc.git add missing args to ISA --- diff --git a/src/soc/fu/logical/test/test_pipe_caller.py b/src/soc/fu/logical/test/test_pipe_caller.py index 07ef8150..7708f22e 100644 --- a/src/soc/fu/logical/test/test_pipe_caller.py +++ b/src/soc/fu/logical/test/test_pipe_caller.py @@ -199,7 +199,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()))