diff options
author | Clifford Wolf <clifford@clifford.at> | 2018-06-16 15:23:04 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2018-06-16 15:23:04 +0200 |
commit | 6acf23cf37285e16050b44370be6cbe7dd3e0dc5 (patch) | |
tree | 352eaa3249ff2941bf6523d0b587b02b535137dc /dummy/chip.cc | |
parent | 5d343a168b98826c80482c11376b1a95b9b0bbca (diff) | |
download | nextpnr-6acf23cf37285e16050b44370be6cbe7dd3e0dc5.tar.gz nextpnr-6acf23cf37285e16050b44370be6cbe7dd3e0dc5.tar.bz2 nextpnr-6acf23cf37285e16050b44370be6cbe7dd3e0dc5.zip |
Some refactoring of Chip API (prep for chipdb refactoring)
Signed-off-by: Clifford Wolf <clifford@clifford.at>
Diffstat (limited to 'dummy/chip.cc')
-rw-r--r-- | dummy/chip.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dummy/chip.cc b/dummy/chip.cc index d9543643..965517fe 100644 --- a/dummy/chip.cc +++ b/dummy/chip.cc @@ -141,14 +141,14 @@ const std::vector<PipId> &Chip::getWireAliases(WireId wire) const // --------------------------------------------------------------- -bool Chip::estimatePosition(BelId bel, float &x, float &y) const +bool Chip::estimatePosition(BelId bel, int &x, int &y) const { x = 0.0; y = 0.0; return false; } -float Chip::estimateDelay(WireId src, WireId dst) const { return 0.0; } +delay_t Chip::estimateDelay(WireId src, WireId dst) const { return 0.0; } // --------------------------------------------------------------- |