Update simple_abc9 tests

This commit is contained in:
Eddie Hung 2020-02-13 12:13:12 -08:00
parent e22fee6cdd
commit 977262c803
3 changed files with 8 additions and 5 deletions

View File

@ -1,2 +0,0 @@
MUXF8 1 0 3 1
1 1 1

View File

@ -213,8 +213,13 @@ module arbiter (clk, rst, request, acknowledge, grant, grant_valid, grant_encode
input rst;
endmodule
(* abc9_box_id=1, whitebox *)
(* abc9_box, blackbox *)
module MUXF8(input I0, I1, S, output O);
specify
(I0 => O) = 0;
(I1 => O) = 0;
(S => O) = 0;
endspecify
endmodule
// Citation: https://github.com/alexforencich/verilog-ethernet

View File

@ -25,8 +25,8 @@ exec ${MAKE:-make} -f ../tools/autotest.mk $seed *.v *.sv EXTRA_FLAGS="-n 300 -p
synth -run coarse; \
opt -full; \
techmap; \
abc9 -lut 4 -box ../abc.box; \
abc9 -lut 4; \
clean; \
check -assert; \
select -assert-none t:${DOLLAR}_NOT_ t:${DOLLAR}_AND_ %%; \
setattr -mod -unset whitebox'"
setattr -mod -unset blackbox'"