diff options
author | David Shah <dave@ds0.me> | 2019-10-03 09:52:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-03 09:52:23 +0100 |
commit | 2c59ce9df551ebbe113743908548ca593781efc8 (patch) | |
tree | 4ab37a8362b9074f69a85b800538a5bb0634a710 /ecp5/archdefs.h | |
parent | cb8d90bcbf6524ef8706c0a262b8f1488b5746a8 (diff) | |
parent | d04e5954a6d6c5a249655d4d57fd99c1f87e5ef0 (diff) | |
download | nextpnr-2c59ce9df551ebbe113743908548ca593781efc8.tar.gz nextpnr-2c59ce9df551ebbe113743908548ca593781efc8.tar.bz2 nextpnr-2c59ce9df551ebbe113743908548ca593781efc8.zip |
Merge pull request #337 from YosysHQ/dave/ecp5_pdp16
ecp5: Adding support for 36-bit wide PDP RAMs
Diffstat (limited to 'ecp5/archdefs.h')
-rw-r--r-- | ecp5/archdefs.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ecp5/archdefs.h b/ecp5/archdefs.h index d7ea0a8e..da12eeaa 100644 --- a/ecp5/archdefs.h +++ b/ecp5/archdefs.h @@ -163,6 +163,10 @@ struct ArchCellInfo IdString clk_sig, lsr_sig, clkmux, lsrmux, srmode; int sd0, sd1; } sliceInfo; + struct + { + bool is_pdp; + } ramInfo; }; NEXTPNR_NAMESPACE_END |