diff options
Diffstat (limited to 'docs/archapi.md')
-rw-r--r-- | docs/archapi.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/archapi.md b/docs/archapi.md index 9ecb1bf1..3131ae64 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. @@ -662,9 +662,9 @@ Return the BelBucketId for the specified bucket name. Returns the bucket for a particular bel. -*BaseArch default: `getBelBucketForCellType(getCellType(bel))`* +*BaseArch default: `getBelBucketForCellType(getBelType(bel))`* -### BelBucketId getBelBucketForCell(IdString cell\_type) const +### BelBucketId getBelBucketForCellType(IdString cell\_type) const Returns the bel bucket for a particular cell type. |