1
0
mirror of https://github.com/YosysHQ/nextpnr.git synced 2026-01-26 12:12:29 +00:00

Initial LUT rotation logic.

Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com>
This commit is contained in:
Keith Rothman
2021-02-24 14:02:21 -08:00
parent 9cbfd0b967
commit cfa449c3f3
8 changed files with 741 additions and 7 deletions

View File

@@ -70,6 +70,8 @@ template <typename Storage = std::vector<uint8_t>> class DynamicBitarray
size_t size() const { return storage.size() * bits_per_value(); }
void clear() { return storage.clear(); }
private:
Storage storage;
};