remove xer.so from ShiftRot formal proof
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Fri, 22 May 2020 20:30:56 +0000 (21:30 +0100)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Fri, 22 May 2020 20:30:56 +0000 (21:30 +0100)
src/soc/fu/shift_rot/formal/proof_main_stage.py

index 129a95794e1362833e2ea8f0af18ac8957a38c6a..8ae7b62940691a13988f4d111d92d9e80cc8fdf6 100644 (file)
@@ -39,7 +39,6 @@ class Driver(Elaboratable):
         ra = dut.i.a
         carry_in = dut.i.xer_ca[0]
         carry_in32 = dut.i.xer_ca[1]
-        so_in = dut.i.xer_so
         carry_out = dut.o.xer_ca
         o = dut.o.o
 
@@ -48,7 +47,7 @@ class Driver(Elaboratable):
                  b.eq(AnyConst(64)),
                  carry_in.eq(AnyConst(1)),
                  carry_in32.eq(AnyConst(1)),
-                 so_in.eq(AnyConst(1))]
+                 ]
 
         comb += dut.i.ctx.op.eq(rec)