Skip to content

Commit

Permalink
fix configuration bit problem after FPGA-Research-Manchester#242
Browse files Browse the repository at this point in the history
  • Loading branch information
KelvinChung2000 committed Nov 13, 2024
1 parent 6578421 commit 8f04ad3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FABulous/fabric_generator/fabric_gen.py
Original file line number Diff line number Diff line change
Expand Up @@ -704,7 +704,7 @@ def genTileSwitchMatrix(self, tile: Tile) -> None:
)

# update the configuration bitstream position
configBitstreamPosition += len(connections[portName]).bit_length() - 1
configBitstreamPosition += paddedMuxSize.bit_length() - 1

### SwitchMatrixDebugSignals ### SwitchMatrixDebugSignals ###
### SwitchMatrixDebugSignals ### SwitchMatrixDebugSignals ###
Expand Down

0 comments on commit 8f04ad3

Please sign in to comment.