diff options
author | Clifford Wolf <clifford@clifford.at> | 2018-07-20 18:09:22 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2018-07-20 18:09:22 +0200 |
commit | fd8239e170a7391d9c25d8681083507d9960abef (patch) | |
tree | a051a9eef682ab922c474850d235f301c2c708fd /common | |
parent | f6fa0300ae95a0896a12b9acf0c7e76851c13d37 (diff) | |
download | nextpnr-fd8239e170a7391d9c25d8681083507d9960abef.tar.gz nextpnr-fd8239e170a7391d9c25d8681083507d9960abef.tar.bz2 nextpnr-fd8239e170a7391d9c25d8681083507d9960abef.zip |
Add Location APIs to generic arch
Signed-off-by: Clifford Wolf <clifford@clifford.at>
Diffstat (limited to 'common')
-rw-r--r-- | common/nextpnr.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/common/nextpnr.h b/common/nextpnr.h index 4cdc4d00..40fd3d13 100644 --- a/common/nextpnr.h +++ b/common/nextpnr.h @@ -339,10 +339,6 @@ struct Context : Arch Context(ArchArgs args) : Arch(args) {} - BelId getBelByLocation(Loc loc) const { - return getBelByLocation(loc.x, loc.y, loc.z); - } - // -------------------------------------------------------------- // provided by router1.cc |