no need for dff*, but need tap_buf4
This commit is contained in:
parent
e14c0bf0c4
commit
cf154d8bb9
|
@ -4,6 +4,13 @@ output [0:0] const0;
|
||||||
assign const0[0] = 1'b0;
|
assign const0[0] = 1'b0;
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
|
// ----- Verilog module for const0 -----
|
||||||
|
module const1(const1);
|
||||||
|
output [0:0] const1;
|
||||||
|
assign const1[0] = 1'b1;
|
||||||
|
endmodule
|
||||||
|
|
||||||
|
|
||||||
// ----- Verilog module for buf4 -----
|
// ----- Verilog module for buf4 -----
|
||||||
module buf4(in,
|
module buf4(in,
|
||||||
out);
|
out);
|
||||||
|
|
Loading…
Reference in New Issue