add SRlatch async mode
[ieee754fpu.git] / src / scoreboard / int_fn_unit.py
index 93f95be3d4313c5910925c7d21088af6f9b4caea..ca8bc1a28ad44447ad09c31614cd5f397569fed7 100644 (file)
@@ -38,8 +38,8 @@ class IntFnUnit(Elaboratable):
 
     def elaborate(self, platform):
         m = Module()
-        m.submodules.rd_l = rd_l = SRLatch()
-        m.submodules.wr_l = wr_l = SRLatch()
+        m.submodules.rd_l = rd_l = SRLatch(sync=False)
+        m.submodules.wr_l = wr_l = SRLatch(sync=False)
         m.submodules.dest_d = dest_d = Decoder(self.reg_width)
         m.submodules.src1_d = src1_d = Decoder(self.reg_width)
         m.submodules.src2_d = src2_d = Decoder(self.reg_width)