OpenSTA/test/one2one_test1.v

13 lines
297 B
Coq
Raw Normal View History

// 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 one2one_test1 (
2024-08-01 06:12:00 +02:00
input wire [7:0] a,
output wire [3:0] y
);
2024-08-01 06:12:00 +02:00
inv_8_to_4 partial_wide_inv_cell (
.A(a),
.Y(y)
);
endmodule