diff options
Diffstat (limited to 'fpga_interchange/arch.h')
-rw-r--r-- | fpga_interchange/arch.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/fpga_interchange/arch.h b/fpga_interchange/arch.h index c7d2544f..4dc64b05 100644 --- a/fpga_interchange/arch.h +++ b/fpga_interchange/arch.h @@ -533,6 +533,8 @@ struct Arch : ArchAPI<ArchRanges> return range; } + WireCategory get_wire_category(WireId wire) const; + // ------------------------------------------------- PipId getPipByName(IdStringList name) const final; @@ -686,6 +688,10 @@ struct Arch : ArchAPI<ArchRanges> std::unordered_set<CellInfo *> *placed_cells); void pack_ports(); void decode_lut_cells(); + + const GlobalCellPOD *global_cell_info(IdString cell_type) const; + void route_globals(); + bool pack() final; bool place() final; bool route() final; |