no need for dff*, but need tap_buf4

This commit is contained in:
Nachiket Kapre 2021-02-08 22:29:55 -05:00
parent e14c0bf0c4
commit cf154d8bb9
1 changed files with 7 additions and 0 deletions

View File

@ -4,6 +4,13 @@ output [0:0] const0;
assign const0[0] = 1'b0;
endmodule
// ----- Verilog module for const0 -----
module const1(const1);
output [0:0] const1;
assign const1[0] = 1'b1;
endmodule
// ----- Verilog module for buf4 -----
module buf4(in,
out);