diff options
Diffstat (limited to 'machxo2/arch.cc')
-rw-r--r-- | machxo2/arch.cc | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/machxo2/arch.cc b/machxo2/arch.cc index 9ac4f3ae..0f1a0670 100644 --- a/machxo2/arch.cc +++ b/machxo2/arch.cc @@ -300,18 +300,6 @@ WireId Arch::getWireByName(IdString name) const return ret; } -uint32_t Arch::getWireChecksum(WireId wire) const -{ - // FIXME - return 0; -} - -void Arch::bindWire(WireId wire, NetInfo *net, PlaceStrength strength) {} - -void Arch::unbindWire(WireId wire) {} - -bool Arch::checkWireAvail(WireId wire) const { return false; } - NetInfo *Arch::getBoundWireNet(WireId wire) const { return nullptr; } NetInfo *Arch::getConflictingWireNet(WireId wire) const { return nullptr; } @@ -363,18 +351,6 @@ IdString Arch::getPipName(PipId pip) const return id("X" + std::to_string(x) + "/Y" + std::to_string(y) + "/" + src_name + ".->." + dst_name); } -uint32_t Arch::getPipChecksum(PipId wire) const -{ - // FIXME - return 0; -} - -void Arch::bindPip(PipId pip, NetInfo *net, PlaceStrength strength) {} - -void Arch::unbindPip(PipId pip) {} - -bool Arch::checkPipAvail(PipId pip) const { return false; } - NetInfo *Arch::getBoundPipNet(PipId pip) const { return nullptr; } NetInfo *Arch::getConflictingPipNet(PipId pip) const { return nullptr; } |