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 bc15f6c5e4
commit 7ad7cea25b

View File

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