From 837c64b4d0423891cd0a115b4a9265d49523dd5f Mon Sep 17 00:00:00 2001 From: Cesar Strauss Date: Tue, 2 Jun 2020 06:37:57 -0300 Subject: [PATCH] Allow at least one operand to be fetched We successfully disabled all rel signals. One was immediate, the other was masked. Let's enable at least one of them, for now. When the test code is complete, we will be able to issue several transactions in sequence, with different combinations. We are not there yet. --- src/soc/experiment/test/test_compalu_multi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/soc/experiment/test/test_compalu_multi.py b/src/soc/experiment/test/test_compalu_multi.py index 95e8f3c5..e80f2317 100644 --- a/src/soc/experiment/test/test_compalu_multi.py +++ b/src/soc/experiment/test/test_compalu_multi.py @@ -144,7 +144,7 @@ class CompUnitParallelTest: def driver(self): print("Begin parallel test.") yield from self.operation(5, 2, InternalOp.OP_ADD, inv_a=0, - imm=8, imm_ok=1, rdmaskn=(1, 0)) + imm=8, imm_ok=0, rdmaskn=(1, 0)) def operation(self, a, b, op, inv_a=0, imm=0, imm_ok=0, zero_a=0, rdmaskn=(0, 0)): -- 2.30.2