corrections on compile
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Thu, 14 Feb 2019 08:51:18 +0000 (08:51 +0000)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Thu, 14 Feb 2019 08:51:18 +0000 (08:51 +0000)
src/add/nmigen_add_experiment.py

index e23bb8a7027b13ad7805d45c9e3c277d464beea4..b9c91cc3c8c7313b5db1ca628ccfbc9dd208a4cf 100644 (file)
@@ -220,14 +220,14 @@ class FPADD:
                         z_s.eq(a_s)
                     ]
                 # a mantissa greater than b, use a
-                with m.Else(a_m >= b_m):
+                with m.Elif(a_m >= b_m):
                     m.d.sync += [
                         tot.eq(a_m - b_m),
                         z_s.eq(a_s)
                     ]
                 # b mantissa greater than a, use b
                 with m.Else():
-                    m.sync += [
+                    m.d.sync += [
                         tot.eq(b_m - a_m),
                         z_s.eq(b_s)
                 ]