Test for (* keep *)-ed abc9_box_id

This commit is contained in:
Eddie Hung 2020-01-23 18:56:25 -08:00
parent f180dba753
commit 11e50c0e9e
1 changed files with 16 additions and 0 deletions

View File

@ -291,3 +291,19 @@ module abc9_test035(input clk, d, output reg [1:0] q);
always @(posedge clk) q[0] <= d;
always @(negedge clk) q[1] <= q[0];
endmodule
module abc9_test036(input A, B, S, output [1:0] O);
(* keep *)
MUXF8 m (
.I0(I0),
.I1(I1),
.O(O[0]),
.S(S)
);
MUXF8 m2 (
.I0(I0),
.I1(I1),
.O(O[1]),
.S(S)
);
endmodule