bugfix in alt

This commit is contained in:
Nachiket Kapre 2021-02-08 23:04:00 -05:00
parent 485708423c
commit d7967da328
1 changed files with 0 additions and 13 deletions

View File

@ -1,16 +1,3 @@
// ----- Verilog module for const0 -----
module const0(const0);
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);