diff options
author | gatecat <gatecat@ds0.me> | 2021-05-06 12:30:58 +0100 |
---|---|---|
committer | gatecat <gatecat@ds0.me> | 2021-05-06 13:12:52 +0100 |
commit | 0d6be6f4749174f4a6938a675456cb663edc47cb (patch) | |
tree | fcd843131002f8986decf8dcd9352cf3ebd54290 /gowin | |
parent | c6fa1a179aa8c79d335ba03814ea71d871c87577 (diff) | |
download | nextpnr-0d6be6f4749174f4a6938a675456cb663edc47cb.tar.gz nextpnr-0d6be6f4749174f4a6938a675456cb663edc47cb.tar.bz2 nextpnr-0d6be6f4749174f4a6938a675456cb663edc47cb.zip |
Add stub cluster API impl for remaining arches
Signed-off-by: gatecat <gatecat@ds0.me>
Diffstat (limited to 'gowin')
-rw-r--r-- | gowin/archdefs.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gowin/archdefs.h b/gowin/archdefs.h index a6b16e5b..fd7e0b0b 100644 --- a/gowin/archdefs.h +++ b/gowin/archdefs.h @@ -21,6 +21,7 @@ #ifndef GOWIN_ARCHDEFS_H #define GOWIN_ARCHDEFS_H +#include "base_clusterinfo.h" #include "idstring.h" #include "nextpnr_namespaces.h" @@ -56,7 +57,7 @@ struct ArchNetInfo struct NetInfo; -struct ArchCellInfo +struct ArchCellInfo : BaseClusterInfo { // Is the flip-flop of this slice used bool ff_used; |