diff options
author | gatecat <gatecat@ds0.me> | 2021-03-22 15:24:36 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-22 15:24:36 +0000 |
commit | 53ed6979a964f3eaaabc0d97399eec9b4c3347f9 (patch) | |
tree | ebff2c62dcf311c0431b6b2d65cd73fe08464260 /fpga_interchange/chipdb.h | |
parent | 68ca923bfefde24fa2b7cbc8c6f9817f1d93e1e5 (diff) | |
parent | 694f9ec3a53c4d2d80869987a691aebb5415c9e0 (diff) | |
download | nextpnr-53ed6979a964f3eaaabc0d97399eec9b4c3347f9.tar.gz nextpnr-53ed6979a964f3eaaabc0d97399eec9b4c3347f9.tar.bz2 nextpnr-53ed6979a964f3eaaabc0d97399eec9b4c3347f9.zip |
Merge pull request #636 from litghost/add_pseudo_pip_data
Add pseudo pip data
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 2130f1b6..2f82dcc9 100644 --- a/fpga_interchange/chipdb.h +++ b/fpga_interchange/chipdb.h @@ -34,7 +34,7 @@ NEXTPNR_NAMESPACE_BEGIN * kExpectedChipInfoVersion */ -static constexpr int32_t kExpectedChipInfoVersion = 1; +static constexpr int32_t kExpectedChipInfoVersion = 2; // Flattened site indexing. // @@ -110,6 +110,7 @@ NPNR_PACKED_STRUCT(struct PipInfoPOD { int16_t site_variant; // site variant index in tile int16_t bel; // BEL this pip belongs to if site pip. int16_t extra_data; + RelSlice<int32_t> pseudo_cell_wires; }); NPNR_PACKED_STRUCT(struct ConstraintTagPOD { |