diff options
author | gatecat <gatecat@ds0.me> | 2021-05-08 10:49:42 +0100 |
---|---|---|
committer | gatecat <gatecat@ds0.me> | 2021-05-15 14:54:33 +0100 |
commit | 29386822955f072e6472ae4ab42e2bd16858e3c5 (patch) | |
tree | 671a945a60b78a15f7695a1f5fb16c7020e6256f | |
parent | 9eb0bc482e171037095dd156d13a286b3b1c6d59 (diff) | |
download | nextpnr-29386822955f072e6472ae4ab42e2bd16858e3c5.tar.gz nextpnr-29386822955f072e6472ae4ab42e2bd16858e3c5.tar.bz2 nextpnr-29386822955f072e6472ae4ab42e2bd16858e3c5.zip |
cyclonev: Rebase update
Signed-off-by: gatecat <gatecat@ds0.me>
-rw-r--r-- | cyclonev/archdefs.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cyclonev/archdefs.h b/cyclonev/archdefs.h index 31f64a6a..0f8f5a12 100644 --- a/cyclonev/archdefs.h +++ b/cyclonev/archdefs.h @@ -22,6 +22,7 @@ #include <boost/functional/hash.hpp> +#include "base_clusterinfo.h" #include "cyclonev.h" #include "idstring.h" @@ -119,6 +120,7 @@ struct PipId typedef IdString DecalId; typedef IdString GroupId; typedef IdString BelBucketId; +typedef IdString ClusterId; struct ArchNetInfo { @@ -165,7 +167,7 @@ struct FFControlSet bool operator!=(const FFControlSet &other) const { return !(*this == other); } }; -struct ArchCellInfo +struct ArchCellInfo : BaseClusterInfo { union { |