aboutsummaryrefslogtreecommitdiffstats
path: root/nexus/arch_pybindings.cc
diff options
context:
space:
mode:
authorKeith Rothman <537074+litghost@users.noreply.github.com>2021-02-01 10:23:21 -0800
committerKeith Rothman <537074+litghost@users.noreply.github.com>2021-02-01 10:23:21 -0800
commit5cf2f8d1ea60537f0c2061451b83e8eb2ba3eefa (patch)
tree43bd80c5377b60d55506ec0b0fcb4441ad8a798d /nexus/arch_pybindings.cc
parent15b2852b916c1299dfc1d91a217de3060701bfbe (diff)
downloadnextpnr-5cf2f8d1ea60537f0c2061451b83e8eb2ba3eefa.tar.gz
nextpnr-5cf2f8d1ea60537f0c2061451b83e8eb2ba3eefa.tar.bz2
nextpnr-5cf2f8d1ea60537f0c2061451b83e8eb2ba3eefa.zip
Seperate PipRange types in pybindings_shared.
Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com>
Diffstat (limited to 'nexus/arch_pybindings.cc')
-rw-r--r--nexus/arch_pybindings.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/nexus/arch_pybindings.cc b/nexus/arch_pybindings.cc
index caab8312..1a3890ff 100644
--- a/nexus/arch_pybindings.cc
+++ b/nexus/arch_pybindings.cc
@@ -51,7 +51,8 @@ void arch_wrap_python(py::module &m)
typedef std::unordered_map<IdString, HierarchicalCell> HierarchyMap;
typedef std::unordered_map<IdString, IdString> AliasMap;
- typedef UpDownhillPipRange PipRange;
+ typedef UpDownhillPipRange UphillPipRange;
+ typedef UpDownhillPipRange DownhillPipRange;
typedef WireBelPinRange BelPinRange;
#include "arch_pybindings_shared.h"