aboutsummaryrefslogtreecommitdiffstats
path: root/tests/various
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2019-08-30 20:31:53 -0700
committerEddie Hung <eddie@fpgeh.com>2019-08-30 20:31:53 -0700
commit4290548de35beba766bd7e0684e19de83a0cb2fa (patch)
treeb42cc32e14667198bdf9ee4a5e2bf8d45e0e21ba /tests/various
parente9bb252e77ba979a4c7041e6a221862a6464bf99 (diff)
downloadyosys-4290548de35beba766bd7e0684e19de83a0cb2fa.tar.gz
yosys-4290548de35beba766bd7e0684e19de83a0cb2fa.tar.bz2
yosys-4290548de35beba766bd7e0684e19de83a0cb2fa.zip
Make abc9 test a bit more interesting
Diffstat (limited to 'tests/various')
-rw-r--r--tests/various/abc9.v4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/various/abc9.v b/tests/various/abc9.v
index a08b613a8..30ebd4e26 100644
--- a/tests/various/abc9.v
+++ b/tests/various/abc9.v
@@ -5,5 +5,7 @@ always @*
endmodule
module abc9_test028(input i, output o);
-unknown u(~i, o);
+wire w;
+unknown u(~i, w);
+unknown2 u2(w, o);
endmodule