1
0
mirror of synced 2026-05-02 06:26:59 +00:00

Missing endmodule

This commit is contained in:
Eddie Hung
2019-11-22 12:37:57 -08:00
parent 0ab1e496dc
commit c761fa49b7

View File

@@ -288,3 +288,4 @@ endmodule
module abc9_test033(input clk, d, output reg q1, q2);
always @(posedge clk) q1 <= d;
always @(posedge clk) q2 <= q1;
endmodule