Remove space issues

This commit is contained in:
Cary R
2025-07-09 07:41:16 -07:00
parent 60e4023e6f
commit cfb8ec17d2
+1 -1
View File
@@ -6,7 +6,7 @@ module DFF (output reg Q, input CLK, D);
(posedge CLK => (Q : D)) = (480, 660);
$setup(D, posedge CLK, 576);
endspecify
always @(posedge CLK)
Q <= D;
endmodule