diff options
author | Miodrag Milanovic <mmicko@gmail.com> | 2020-01-01 16:24:30 +0100 |
---|---|---|
committer | Miodrag Milanovic <mmicko@gmail.com> | 2020-01-01 16:24:30 +0100 |
commit | a1344ec06ead35a3b7933ee93b5757eeff2e5d4a (patch) | |
tree | c7fa99ce8350542599ad0131957e44592557e255 /tests/arch | |
parent | e0c879684f510ae6fd1169c90d137e660c88e6be (diff) | |
download | yosys-a1344ec06ead35a3b7933ee93b5757eeff2e5d4a.tar.gz yosys-a1344ec06ead35a3b7933ee93b5757eeff2e5d4a.tar.bz2 yosys-a1344ec06ead35a3b7933ee93b5757eeff2e5d4a.zip |
Added a test case
Diffstat (limited to 'tests/arch')
-rw-r--r-- | tests/arch/xilinx/bug1605.ys | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/arch/xilinx/bug1605.ys b/tests/arch/xilinx/bug1605.ys new file mode 100644 index 000000000..4be659860 --- /dev/null +++ b/tests/arch/xilinx/bug1605.ys @@ -0,0 +1,19 @@ +read_verilog <<EOT +module top(inout io); + wire in; + wire t; + wire o; + + IOBUF IOBUF( + .I(in), + .T(t), + .IO(io), + .O(o) + ); +endmodule +EOT + +synth_xilinx +cd top +select -assert-count 1 t:IOBUF +select -assert-none t:* t:IOBUF %d |