mirror of https://github.com/YosysHQ/yosys.git
abc9: test to use box file instead of auto
This commit is contained in:
parent
c50601e35e
commit
5ad3a85288
|
@ -0,0 +1,3 @@
|
||||||
|
MUXF8 1 0 3 1
|
||||||
|
#I0 I1 S
|
||||||
|
0 0 0 # O
|
|
@ -213,7 +213,7 @@ module arbiter (clk, rst, request, acknowledge, grant, grant_valid, grant_encode
|
||||||
input rst;
|
input rst;
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
(* abc9_box, blackbox *)
|
(* abc9_box_id=1, blackbox *)
|
||||||
module MUXF8(input I0, I1, S, output O);
|
module MUXF8(input I0, I1, S, output O);
|
||||||
specify
|
specify
|
||||||
(I0 => O) = 0;
|
(I0 => O) = 0;
|
||||||
|
|
|
@ -25,7 +25,7 @@ exec ${MAKE:-make} -f ../tools/autotest.mk $seed *.v *.sv EXTRA_FLAGS="-n 300 -p
|
||||||
synth -run coarse; \
|
synth -run coarse; \
|
||||||
opt -full; \
|
opt -full; \
|
||||||
techmap; \
|
techmap; \
|
||||||
abc9 -lut 4; \
|
abc9 -lut 4 -box ../abc9.box; \
|
||||||
clean; \
|
clean; \
|
||||||
check -assert; \
|
check -assert; \
|
||||||
select -assert-none t:${DOLLAR}_NOT_ t:${DOLLAR}_AND_ %%; \
|
select -assert-none t:${DOLLAR}_NOT_ t:${DOLLAR}_AND_ %%; \
|
||||||
|
|
Loading…
Reference in New Issue