diff options
author | David Shah <davey1576@gmail.com> | 2019-02-23 17:38:33 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-23 17:38:33 +0000 |
commit | 92a4a48f47fc544950201935db9532a970e2d5b8 (patch) | |
tree | d784d61762f742f01b26daf9ad06caf5ff54f930 /ice40/arch_pybindings.cc | |
parent | e8d3aaaf34895a073e4023192d97fc936d090990 (diff) | |
parent | 7044f56246417c4db9fc9df2feebb8138e56d51a (diff) | |
download | nextpnr-92a4a48f47fc544950201935db9532a970e2d5b8.tar.gz nextpnr-92a4a48f47fc544950201935db9532a970e2d5b8.tar.bz2 nextpnr-92a4a48f47fc544950201935db9532a970e2d5b8.zip |
Merge pull request #241 from corecode/u4k
ice40: support u4k
Diffstat (limited to 'ice40/arch_pybindings.cc')
-rw-r--r-- | ice40/arch_pybindings.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ice40/arch_pybindings.cc b/ice40/arch_pybindings.cc index 3fafb1f6..f0ca584b 100644 --- a/ice40/arch_pybindings.cc +++ b/ice40/arch_pybindings.cc @@ -39,6 +39,7 @@ void arch_wrap_python() .value("HX1K", ArchArgs::HX1K) .value("HX8K", ArchArgs::HX8K) .value("UP5K", ArchArgs::UP5K) + .value("U4K", ArchArgs::U4K) .export_values(); class_<BelId>("BelId").def_readwrite("index", &BelId::index); |