diff options
author | gatecat <gatecat@ds0.me> | 2021-10-03 19:33:07 +0100 |
---|---|---|
committer | gatecat <gatecat@ds0.me> | 2021-10-05 12:40:47 +0100 |
commit | f5f7ef68649e873e6e5dc912544ed8abb5eb8fc3 (patch) | |
tree | d8a2c6f41f7c97b3ba56d73821a4d462ccce3842 /mistral/archdefs.h | |
parent | fe31fba6231e31fa642f25e1ab23d588315e5510 (diff) | |
download | nextpnr-f5f7ef68649e873e6e5dc912544ed8abb5eb8fc3.tar.gz nextpnr-f5f7ef68649e873e6e5dc912544ed8abb5eb8fc3.tar.bz2 nextpnr-f5f7ef68649e873e6e5dc912544ed8abb5eb8fc3.zip |
mistral: Adding support for MLABs as memory
Signed-off-by: gatecat <gatecat@ds0.me>
Diffstat (limited to 'mistral/archdefs.h')
-rw-r--r-- | mistral/archdefs.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mistral/archdefs.h b/mistral/archdefs.h index 8b4256ab..f4040398 100644 --- a/mistral/archdefs.h +++ b/mistral/archdefs.h @@ -195,6 +195,11 @@ struct ArchCellInfo : BaseClusterInfo bool is_carry, is_shared, is_extended; bool carry_start, carry_end; + + // MLABs with compatible write ports have this set to the same non-negative integer. -1 means this isn't a + // MLAB + int mlab_group; + ControlSig wclk, we; } combInfo; struct { |