diff options
author | gatecat <gatecat@ds0.me> | 2021-02-23 22:55:09 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-23 22:55:09 +0000 |
commit | 19ae97afd12e3fed9d09aaf886f6e25a92de1032 (patch) | |
tree | 68b899b428e601e58c531585aec5de3f4cb63f7c /docs/archapi.md | |
parent | 5de19786322412ce151b0341ed714dcdb03433cc (diff) | |
parent | 0758f68020efa6d9441eab9de903673f02d47639 (diff) | |
download | nextpnr-19ae97afd12e3fed9d09aaf886f6e25a92de1032.tar.gz nextpnr-19ae97afd12e3fed9d09aaf886f6e25a92de1032.tar.bz2 nextpnr-19ae97afd12e3fed9d09aaf886f6e25a92de1032.zip |
Merge pull request #595 from litghost/const_cell_info
Change CellInfo in getBelPinsForCellPin to be const.
Diffstat (limited to 'docs/archapi.md')
-rw-r--r-- | docs/archapi.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/archapi.md b/docs/archapi.md index 9ecb1bf1..55f5c3bc 100644 --- a/docs/archapi.md +++ b/docs/archapi.md @@ -236,7 +236,7 @@ Return the type (input/output/inout) of the given bel pin. Return a list of all pins on that bel. -### CellBelPinRangeT getBelPinsForCellPin(CellInfo *cell_info, IdString pin) const +### CellBelPinRangeT getBelPinsForCellPin(const CellInfo *cell_info, IdString pin) const Return the list of bel pin names that a given cell pin should be routed to. In most cases there will be a single bel pin for each cell pin; and output pins must _always_ have only one bel pin associated with them. |