diff options
author | gatecat <gatecat@ds0.me> | 2021-05-15 22:37:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-15 22:37:19 +0100 |
commit | 47b4e42b1c0b849dc73a06357ad7e5cb24e0cbd7 (patch) | |
tree | 2a1a642e6bd577851161e0806453325ad777a302 /common/idstringlist.h | |
parent | 1b5767928de16b1df2e8d90066023e3cd076d40d (diff) | |
parent | 3eeb2b20ebd3e527fb82a46774f4584575a3a9e1 (diff) | |
download | nextpnr-47b4e42b1c0b849dc73a06357ad7e5cb24e0cbd7.tar.gz nextpnr-47b4e42b1c0b849dc73a06357ad7e5cb24e0cbd7.tar.bz2 nextpnr-47b4e42b1c0b849dc73a06357ad7e5cb24e0cbd7.zip |
Merge pull request #707 from gatecat/cyclonev
mistral: Initial Cyclone V support
Diffstat (limited to 'common/idstringlist.h')
-rw-r--r-- | common/idstringlist.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/common/idstringlist.h b/common/idstringlist.h index 6a6a554d..24a46731 100644 --- a/common/idstringlist.h +++ b/common/idstringlist.h @@ -64,6 +64,9 @@ struct IdStringList } return false; } + + static IdStringList concat(IdStringList a, IdStringList b); + IdStringList slice(size_t s, size_t e) const; }; NEXTPNR_NAMESPACE_END |