...
Code Block | ||||
---|---|---|---|---|
| ||||
project = createProject() project.load('/home/user/example/vhdl/simple/routed.nym') pproject.setDeviceID(10) #Set Device ID to 0xA project.generateBitstream('bitstream.nxb') |
...
Code Block | ||
---|---|---|
| ||
project = createProject() project.setDirectory('./new_dir') |
Anchor | ||||
---|---|---|---|---|
|
This method is used to specify the position of the focus for the whole design or just a region.
The focus can only be edited before the execution of Place flow steps.
Arguments:
Name | Type | Description |
region | ||
column | unsigned | the focus abscissa. A valid ordinate value must respect the tile or CGB column coordinate which is available for the selected target variant in the current project. |
row | unsigned | the focus ordinate. A valid ordinate value must respect the tile or CGB row coordinate which is available for the selected target variant in the current project. |
...