From: Luke Kenneth Casson Leighton Date: Sun, 31 May 2020 12:08:22 +0000 (+0100) Subject: start with zero, try not to compare against 9 bytes in a 64-bit value: cmpeqb test X-Git-Tag: div_pipeline~719 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a40f62cb212ccac90a11778e3e027c75a6574117;p=soc.git start with zero, try not to compare against 9 bytes in a 64-bit value: cmpeqb test --- diff --git a/src/soc/fu/alu/test/test_pipe_caller.py b/src/soc/fu/alu/test/test_pipe_caller.py index ec738383..a98d3440 100644 --- a/src/soc/fu/alu/test/test_pipe_caller.py +++ b/src/soc/fu/alu/test/test_pipe_caller.py @@ -151,7 +151,7 @@ class ALUTestCase(FHDLTestCase): for i in range(20): initial_regs = [0] * 32 initial_regs[1] = i - initial_regs[2] = 0x01030507090b0d0f11 + initial_regs[2] = 0x0001030507090b0f self.run_tst_program(Program(lst), initial_regs, {}) def test_ilang(self):