diff options
author | David Shah <davey1576@gmail.com> | 2018-08-06 12:24:41 +0200 |
---|---|---|
committer | David Shah <davey1576@gmail.com> | 2018-09-29 16:09:21 +0100 |
commit | 97b12fa741a48efed1014aecf8283eabb2919d20 (patch) | |
tree | ee5c9dd790e0bf0d51dc8ef76fca64a3bcd9977f /ecp5/arch.cc | |
parent | bc10a5646d337ef1cf412aaf58eef51e16eb4474 (diff) | |
download | nextpnr-97b12fa741a48efed1014aecf8283eabb2919d20.tar.gz nextpnr-97b12fa741a48efed1014aecf8283eabb2919d20.tar.bz2 nextpnr-97b12fa741a48efed1014aecf8283eabb2919d20.zip |
ecp5: Add DCC Bels, fix global router post-rebase
Signed-off-by: David Shah <davey1576@gmail.com>
Diffstat (limited to 'ecp5/arch.cc')
-rw-r--r-- | ecp5/arch.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ecp5/arch.cc b/ecp5/arch.cc index 6b701a32..3aa24aca 100644 --- a/ecp5/arch.cc +++ b/ecp5/arch.cc @@ -43,6 +43,7 @@ static std::tuple<int, int, std::string> split_identifier_name(const std::string // ----------------------------------------------------------------------- + void IdString::initialize_arch(const BaseCtx *ctx) { #define X(t) initialize_add(ctx, #t, ID_##t); |