From 736228288b1065b50752d1193fb1d26037960bf6 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Mon, 25 May 2020 03:26:46 +0100 Subject: [PATCH] comment out invalid test --- src/soc/experiment/compalu_multi.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/soc/experiment/compalu_multi.py b/src/soc/experiment/compalu_multi.py index 876f5f8a..c1a555d1 100644 --- a/src/soc/experiment/compalu_multi.py +++ b/src/soc/experiment/compalu_multi.py @@ -354,9 +354,11 @@ def scoreboard_sim(dut): result = yield from op_sim(dut, 5, 2, InternalOp.OP_ADD, inv_a=1) assert result == 65532 - result = yield from op_sim(dut, 5, 2, InternalOp.OP_ADD, zero_a=1, - imm=8, imm_ok=1) - assert result == 8 + # XXX - immediate and zero is not a POWER mode (and won't work anyway) + # reason: no actual operands. + #result = yield from op_sim(dut, 5, 2, InternalOp.OP_ADD, zero_a=1, + # imm=8, imm_ok=1) + #assert result == 8 result = yield from op_sim(dut, 5, 2, InternalOp.OP_ADD, zero_a=1) assert result == 2 -- 2.30.2