Skip to content

Commit

Permalink
docs/xc9500: fix swapped pterm polarity
Browse files Browse the repository at this point in the history
  • Loading branch information
wanda-phi committed Nov 11, 2023
1 parent 29fb3c0 commit 9845e18
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/xc9500/bitstream-xc9500.rst
Original file line number Diff line number Diff line change
Expand Up @@ -141,13 +141,13 @@ The formulas are as follows:

1. ``FB[i].MC[j].PT[k].IM[l].P`` is stored at:

- row: ``l * 2``
- row: ``l * 2 + 1``
- column: ``k + (j % 3) * 5``
- bit: ``j // 3``

2. ``FB[i].MC[j].PT[k].IM[l].N`` is stored at:

- row: ``l * 2 + 1``
- row: ``l * 2``
- column: ``k + (j % 3) * 5``
- bit: ``j // 3``

Expand Down
4 changes: 2 additions & 2 deletions docs/xc9500/bitstream-xc9500xl.rst
Original file line number Diff line number Diff line change
Expand Up @@ -93,13 +93,13 @@ The formulas are as follows (unchanged from XC9500, but now with more rows):

1. ``FB[i].MC[j].PT[k].IM[l].P`` is stored at:

- row: ``l * 2``
- row: ``l * 2 + 1``
- column: ``k + (j % 3) * 5``
- bit: ``j // 3``

2. ``FB[i].MC[j].PT[k].IM[l].N`` is stored at:

- row: ``l * 2 + 1``
- row: ``l * 2``
- column: ``k + (j % 3) * 5``
- bit: ``j // 3``

Expand Down

0 comments on commit 9845e18

Please sign in to comment.