Remove space issues

This commit is contained in:
Cary R 2025-07-09 07:39:32 -07:00
parent 60e4023e6f
commit cfb8ec17d2
1 changed files with 1 additions and 1 deletions

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