diff options
author | gatecat <gatecat@ds0.me> | 2021-03-29 18:23:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-29 18:23:16 +0100 |
commit | 692d7dc26ddf21e2d38dd16aecef652ab4c0d5e3 (patch) | |
tree | ebe474f5cacc1206b083c7a09e77d431b4a61e61 /fpga_interchange/luts.h | |
parent | 4419c36db5556d2a7f600517d6a4b5673067579d (diff) | |
parent | f33d02dca9f6080c2497a4e058554c9908677888 (diff) | |
download | nextpnr-692d7dc26ddf21e2d38dd16aecef652ab4c0d5e3.tar.gz nextpnr-692d7dc26ddf21e2d38dd16aecef652ab4c0d5e3.tar.bz2 nextpnr-692d7dc26ddf21e2d38dd16aecef652ab4c0d5e3.zip |
Merge pull request #645 from litghost/add_counter_and_ram
FPGA interchange: Add counter and ram tests
Diffstat (limited to 'fpga_interchange/luts.h')
-rw-r--r-- | fpga_interchange/luts.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fpga_interchange/luts.h b/fpga_interchange/luts.h index 3500c9d3..dec5a9d6 100644 --- a/fpga_interchange/luts.h +++ b/fpga_interchange/luts.h @@ -88,6 +88,8 @@ struct LutMapper std::vector<CellInfo *> cells; bool remap_luts(const Context *ctx); + uint32_t check_wires(const std::vector<std::vector<int32_t>> &bel_to_cell_pin_remaps, + const std::vector<const LutBel *> &lut_bels, uint32_t used_pins) const; }; // Rotate and merge a LUT equation into an array of levels. |