whitespace, rename ilang to alu_main_stage.il
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Wed, 20 May 2020 14:23:42 +0000 (15:23 +0100)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Wed, 20 May 2020 14:23:42 +0000 (15:23 +0100)
src/soc/fu/alu/formal/proof_main_stage.py

index c139cccb6cdd3be14bc0818681d4d8d0427694f1..3bc06e6f9f3aefd57a502ce76e844061efcf4927 100644 (file)
@@ -70,7 +70,7 @@ class Driver(Elaboratable):
         # main assertion of arithmetic operations
         with m.Switch(rec.insn_type):
             with m.Case(InternalOp.OP_ADD):
-                
+
                 comb += Assert(Cat(o, carry_out) == (a + b + carry_in))
 
                 # CA32
@@ -104,7 +104,7 @@ class ALUTestCase(FHDLTestCase):
     def test_ilang(self):
         dut = Driver()
         vl = rtlil.convert(dut, ports=[])
-        with open("main_stage.il", "w") as f:
+        with open("alu_main_stage.il", "w") as f:
             f.write(vl)