2024-08-01 05:48:36 +02:00
|
|
|
// Liberty file test: one-to-one mapping with mismatched bit widths
|
|
|
|
|
// Should generate warning but still create timing arcs between bits with same index
|
2024-08-02 06:14:48 +02:00
|
|
|
module liberty_arcs_one2one_2 (
|
2024-08-01 06:12:00 +02:00
|
|
|
input wire [3:0] a,
|
|
|
|
|
output wire [7:0] y
|
2024-08-01 05:48:36 +02:00
|
|
|
);
|
|
|
|
|
|
2024-08-01 06:12:00 +02:00
|
|
|
inv_4_to_8 partial_wide_inv_cell (
|
2024-08-01 05:48:36 +02:00
|
|
|
.A(a),
|
|
|
|
|
.Y(y)
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
endmodule
|