diff options
author | gatecat <gatecat@ds0.me> | 2021-07-12 20:04:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-12 20:04:48 +0100 |
commit | 034467ff615494b2a74cee08081cb17edc9ea1a4 (patch) | |
tree | 44fdb97d65f7b2e94295153e2d93ae2807c813e5 /fpga_interchange/arch.h | |
parent | 24b7084feb6beecacbe447a15f9b2de04b14d685 (diff) | |
parent | 7abfeb11c3ff153b5d353404b7c7c6767f3823a9 (diff) | |
download | nextpnr-034467ff615494b2a74cee08081cb17edc9ea1a4.tar.gz nextpnr-034467ff615494b2a74cee08081cb17edc9ea1a4.tar.bz2 nextpnr-034467ff615494b2a74cee08081cb17edc9ea1a4.zip |
Merge pull request #761 from acomodi/interchange-constrs
interchange: add user placement constraints handling
Diffstat (limited to 'fpga_interchange/arch.h')
-rw-r--r-- | fpga_interchange/arch.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fpga_interchange/arch.h b/fpga_interchange/arch.h index 630c4480..8afb71e1 100644 --- a/fpga_interchange/arch.h +++ b/fpga_interchange/arch.h @@ -720,6 +720,9 @@ struct Arch : ArchAPI<ArchRanges> void prepare_cluster(const ClusterPOD *cluster, uint32_t index); dict<ClusterId, Cluster> clusters; + // User constraints + void place_constraints(); + void decode_lut_cells(); const GlobalCellPOD *global_cell_info(IdString cell_type) const; |