no need for dff*, but need tap_buf4

This commit is contained in:
Nachiket Kapre 2021-02-08 22:28:42 -05:00
parent 45437fbc46
commit e14c0bf0c4
1 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,9 @@
// ----- Verilog module for const0 -----
module const0(const0);
output [0:0] const0;
assign const0[0] = 1'b0;
endmodule
// ----- Verilog module for buf4 -----
module buf4(in,
out);