diff options
author | Miodrag Milanović <mmicko@gmail.com> | 2020-01-01 17:46:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-01 17:46:45 +0100 |
commit | 6620b4e94e106340ca10d5602c32bfd0313ff46e (patch) | |
tree | c7fa99ce8350542599ad0131957e44592557e255 /tests/arch | |
parent | 22fe931c861aa3f557327baf9d12ec57006308d9 (diff) | |
parent | a1344ec06ead35a3b7933ee93b5757eeff2e5d4a (diff) | |
download | yosys-6620b4e94e106340ca10d5602c32bfd0313ff46e.tar.gz yosys-6620b4e94e106340ca10d5602c32bfd0313ff46e.tar.bz2 yosys-6620b4e94e106340ca10d5602c32bfd0313ff46e.zip |
Merge pull request #1605 from YosysHQ/iopad_fix
iopad mapping should take care of existing io buffers
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 |