diff options
author | gatecat <gatecat@ds0.me> | 2021-04-02 09:46:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-02 09:46:21 +0100 |
commit | bb6079133c9b0de9db3e39735d160c1a161ec981 (patch) | |
tree | c73ef33d274dba1c7c715b9fbe9af867feae4686 /fpga_interchange/chipdb.h | |
parent | ec98fee1eefd61d17ccfaf58bae72e1cc0f9e5e3 (diff) | |
parent | 3a85088d6653b11abdf039c334814da97d0e2949 (diff) | |
download | nextpnr-bb6079133c9b0de9db3e39735d160c1a161ec981.tar.gz nextpnr-bb6079133c9b0de9db3e39735d160c1a161ec981.tar.bz2 nextpnr-bb6079133c9b0de9db3e39735d160c1a161ec981.zip |
Merge pull request #658 from litghost/increment_chipdb
[interchange] Update to v6 of FPGA interchange chipdb.
Diffstat (limited to 'fpga_interchange/chipdb.h')
-rw-r--r-- | fpga_interchange/chipdb.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fpga_interchange/chipdb.h b/fpga_interchange/chipdb.h index d78e3b61..6c7b8c83 100644 --- a/fpga_interchange/chipdb.h +++ b/fpga_interchange/chipdb.h @@ -34,7 +34,7 @@ NEXTPNR_NAMESPACE_BEGIN * kExpectedChipInfoVersion */ -static constexpr int32_t kExpectedChipInfoVersion = 5; +static constexpr int32_t kExpectedChipInfoVersion = 6; // Flattened site indexing. // @@ -133,6 +133,7 @@ NPNR_PACKED_STRUCT(struct LutBelPOD { RelSlice<int32_t> pins; // constid uint32_t low_bit; uint32_t high_bit; + int32_t out_pin; // constid }); NPNR_PACKED_STRUCT(struct LutElementPOD { |