From 7ad7cea25b33816b87645b0d3853bf2e18f6515c Mon Sep 17 00:00:00 2001 From: Ross Thompson Date: Tue, 6 Sep 2022 15:06:54 -0500 Subject: [PATCH] James found a bug in synchronizer. Was not actually back to back flip flops. --- pipelined/src/generic/flop/synchronizer.sv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipelined/src/generic/flop/synchronizer.sv b/pipelined/src/generic/flop/synchronizer.sv index 4d0589991..f953a2e64 100644 --- a/pipelined/src/generic/flop/synchronizer.sv +++ b/pipelined/src/generic/flop/synchronizer.sv @@ -40,7 +40,7 @@ module synchronizer ( always_ff @(posedge clk) begin mid <= #1 d; - q <= #1 d; + q <= #1 mid; end endmodule