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