aboutsummaryrefslogtreecommitdiffstats
path: root/ice40
diff options
context:
space:
mode:
authorDavid Shah <davey1576@gmail.com>2018-06-12 13:45:59 +0200
committerDavid Shah <davey1576@gmail.com>2018-06-12 13:45:59 +0200
commit47eeda40bce5b520f1c5aafb52f5b4c11b799d60 (patch)
tree829a500a297656859f69837da2f0381fb383ff05 /ice40
parent031d8e811f9ce00f0c72e697789f991834d1f8f2 (diff)
downloadnextpnr-47eeda40bce5b520f1c5aafb52f5b4c11b799d60.tar.gz
nextpnr-47eeda40bce5b520f1c5aafb52f5b4c11b799d60.tar.bz2
nextpnr-47eeda40bce5b520f1c5aafb52f5b4c11b799d60.zip
Implement the placement validity checker
Signed-off-by: David Shah <davey1576@gmail.com>
Diffstat (limited to 'ice40')
-rw-r--r--ice40/arch_place.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ice40/arch_place.h b/ice40/arch_place.h
index 19b0635f..8f8ce806 100644
--- a/ice40/arch_place.h
+++ b/ice40/arch_place.h
@@ -26,6 +26,6 @@
// Whether or not a given cell can be placed at a given Bel
// This is not intended for Bel type checks, but finer-grained constraints
// such as conflicting set/reset signals, etc
-bool isValidBelForCell(Chip *chip, CellInfo *cell, BelId bel);
+bool isValidBelForCell(Design *design, CellInfo *cell, BelId bel);
#endif