Skip to content

Commit 9284f17

Browse files
authored
Correct bel.txt comment (FPGA-Research#144)
1 parent f15a0eb commit 9284f17

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fabric_generator/model_generation_npnr.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ def genNextpnrModel(fabric: Fabric):
1010
belStr = []
1111
belv2Str = []
1212
belStr.append(
13-
f"# BEL descriptions: bottom left corner Tile_X0Y0, top right Tile_X{fabric.numberOfColumns}Y{fabric.numberOfRows}")
13+
f"# BEL descriptions: top left corner Tile_X0Y0, bottom right Tile_X{fabric.numberOfColumns}Y{fabric.numberOfRows}")
1414
belv2Str.append(
15-
f"# BEL descriptions: bottom left corner Tile_X0Y0, top right Tile_X{fabric.numberOfColumns}Y{fabric.numberOfRows}")
15+
f"# BEL descriptions: top left corner Tile_X0Y0, bottom right Tile_X{fabric.numberOfColumns}Y{fabric.numberOfRows}")
1616
constrainStr = []
1717

1818
for y, row in enumerate(fabric.tile):

0 commit comments

Comments
 (0)