James found a bug in synchronizer. Was not actually back to back flip flops.

This commit is contained in:
Ross Thompson 2022-09-06 15:06:54 -05:00
parent 99e3f55637
commit 6685b0563e

View File

@ -40,7 +40,7 @@ module synchronizer (
always_ff @(posedge clk) begin
mid <= #1 d;
q <= #1 d;
q <= #1 mid;
end
endmodule