blob: aad378346e720c45713661c7f1cc951138e0c440 (
plain)
1
2
3
4
5
6
7
8
9
10
|
module dff_test(n1, n1_inv, clk);
input clk;
(* init = 32'd0 *)
output n1;
reg n1 = 32'd0;
output n1_inv;
always @(posedge clk)
n1 <= n1_inv;
assign n1_inv = ~n1;
endmodule
|