File size: 306 Bytes
23d354c | 1 2 3 4 5 6 7 8 9 10 11 12 13 | // Liberty file test: one-to-one mapping with mismatched bit widths
// Should generate warning but still create timing arcs between bits with same index
module liberty_arcs_one2one_2 (
input wire [3:0] a,
output wire [7:0] y
);
inv_4_to_8 partial_wide_inv_cell (
.A(a),
.Y(y)
);
endmodule |