diff options
Diffstat (limited to 'ecp5/archdefs.h')
-rw-r--r-- | ecp5/archdefs.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/ecp5/archdefs.h b/ecp5/archdefs.h index 5312045c..0f197345 100644 --- a/ecp5/archdefs.h +++ b/ecp5/archdefs.h @@ -180,8 +180,14 @@ struct ArchCellInfo struct { bool is_pdp; - bool output_a_registered; - bool output_b_registered; + // Are the outputs from a DP16KD registered (OUTREG) + // or non-registered (NOREG) + bool is_output_a_registered; + bool is_output_b_registered; + // Which timing information to use for a DP16KD. Depends on registering + // configuration. + nextpnr_ecp5::IdString regmode_timing_id; + } ramInfo; }; |