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 /passes | |
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 'passes')
-rw-r--r-- | passes/techmap/iopadmap.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/passes/techmap/iopadmap.cc b/passes/techmap/iopadmap.cc index 47da98b06..531ac2b99 100644 --- a/passes/techmap/iopadmap.cc +++ b/passes/techmap/iopadmap.cc @@ -234,6 +234,9 @@ struct IopadmapPass : public Pass { SigBit wire_bit(wire, i); Cell *tbuf_cell = nullptr; + if (skip_wire_bits.count(wire_bit)) + continue; + if (tbuf_bits.count(wire_bit)) tbuf_cell = tbuf_bits.at(wire_bit); |