aboutsummaryrefslogtreecommitdiffstats
path: root/bugs/minimal_1.v
blob: 95957ff1f34fb1b0867aded0bac5926a32f10162 (plain)
1
2
3
4
5
6
7
// Increasing the size of the wires makes yosys hang
module div_error(y, w1, w2);
   output [50:0] y;
   input [50:0] w1;
   input [50:0] w2;
   assign y = w1 / w2;
endmodule // div_error