diff options
author | Clifford Wolf <clifford@clifford.at> | 2018-06-12 14:24:59 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2018-06-12 14:24:59 +0200 |
commit | 391d49c13ec675e263115d18481d4b842622b712 (patch) | |
tree | adf6116cbb6688d31fc565cc2f14bb874f535486 /ice40/pybindings.cc | |
parent | 5f813410aabdae3de84e11861248dcd0699b41c2 (diff) | |
download | nextpnr-391d49c13ec675e263115d18481d4b842622b712.tar.gz nextpnr-391d49c13ec675e263115d18481d4b842622b712.tar.bz2 nextpnr-391d49c13ec675e263115d18481d4b842622b712.zip |
Add nextpnr namespace
Signed-off-by: Clifford Wolf <clifford@clifford.at>
Diffstat (limited to 'ice40/pybindings.cc')
-rw-r--r-- | ice40/pybindings.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ice40/pybindings.cc b/ice40/pybindings.cc index c00bf6b9..9094fe7c 100644 --- a/ice40/pybindings.cc +++ b/ice40/pybindings.cc @@ -21,6 +21,8 @@ #include "pybindings.h" #include "nextpnr.h" +NEXTPNR_NAMESPACE_BEGIN + void arch_wrap_python() { class_<ChipArgs>("ChipArgs").def_readwrite("type", &ChipArgs::type); @@ -80,3 +82,5 @@ void arch_wrap_python() WRAP_RANGE(AllPip); WRAP_RANGE(Pip); } + +NEXTPNR_NAMESPACE_END |