diff options
author | Miodrag Milanovic <mmicko@gmail.com> | 2023-03-09 11:04:38 +0100 |
---|---|---|
committer | myrtle <gatecat@ds0.me> | 2023-03-16 13:37:23 +0100 |
commit | 7ad9914e519d465cfb36e0114a644e2d03c6f4fa (patch) | |
tree | 2ceffdaf4962c0184eb351e534eed3fb0dce6aa4 /machxo2/arch_pybindings.cc | |
parent | d5b5f7e4b2573444081ab30d400c3db5d9e278d8 (diff) | |
download | nextpnr-7ad9914e519d465cfb36e0114a644e2d03c6f4fa.tar.gz nextpnr-7ad9914e519d465cfb36e0114a644e2d03c6f4fa.tar.bz2 nextpnr-7ad9914e519d465cfb36e0114a644e2d03c6f4fa.zip |
Extend chipdb with metadata
Diffstat (limited to 'machxo2/arch_pybindings.cc')
-rw-r--r-- | machxo2/arch_pybindings.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/machxo2/arch_pybindings.cc b/machxo2/arch_pybindings.cc index 3fcf721d..6bd31ff7 100644 --- a/machxo2/arch_pybindings.cc +++ b/machxo2/arch_pybindings.cc @@ -30,7 +30,7 @@ NEXTPNR_NAMESPACE_BEGIN void arch_wrap_python(py::module &m) { using namespace PythonConversion; - py::class_<ArchArgs>(m, "ArchArgs").def_readwrite("type", &ArchArgs::type); + py::class_<ArchArgs>(m, "ArchArgs").def_readwrite("device", &ArchArgs::device); py::class_<BelId>(m, "BelId").def_readwrite("index", &BelId::index); |