aboutsummaryrefslogtreecommitdiffstats
path: root/machxo2/cells.h
diff options
context:
space:
mode:
authorWilliam D. Jones <thor0505@comcast.net>2021-02-02 09:55:42 -0500
committergatecat <gatecat@ds0.me>2021-02-12 10:36:59 +0000
commit086bca18b828488cab4f2a825cffa34812ab8c8f (patch)
tree87353bac147949e58edb11ca1c04e0b99e571ebf /machxo2/cells.h
parent3ab300a28e9fcfbc7c2d35424eab849da0d4b866 (diff)
downloadnextpnr-086bca18b828488cab4f2a825cffa34812ab8c8f.tar.gz
nextpnr-086bca18b828488cab4f2a825cffa34812ab8c8f.tar.bz2
nextpnr-086bca18b828488cab4f2a825cffa34812ab8c8f.zip
machxo2: Add packing logic to handle FFs fed with constant value; UART test core routes.
Diffstat (limited to 'machxo2/cells.h')
-rw-r--r--machxo2/cells.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/machxo2/cells.h b/machxo2/cells.h
index 351780ec..a6de219e 100644
--- a/machxo2/cells.h
+++ b/machxo2/cells.h
@@ -46,7 +46,7 @@ void lut_to_lc(const Context *ctx, CellInfo *lut, CellInfo *lc, bool no_dff = tr
// and reconnecting signals as necessary. If pass_thru_lut is True, the LUT will
// be configured as pass through and D connected to I0, otherwise D will be
// ignored
-void dff_to_lc(const Context *ctx, CellInfo *dff, CellInfo *lc, bool pass_thru_lut = false);
+void dff_to_lc(Context *ctx, CellInfo *dff, CellInfo *lc, bool pass_thru_lut = false);
// Convert a nextpnr IO buffer to a GENERIC_IOB
void nxio_to_iob(Context *ctx, CellInfo *nxio, CellInfo *sbio, std::unordered_set<IdString> &todelete_cells);