"Building"

Building is the stage, where the *.s19 files are transitioned to *.bin files. Also the resulting *.bin files are concatinated to only ONE bin file.

ASLINK using the current setup usually generates two files, a "rom" file and a "ram" file. The ram file being the data that the ram (bss) will be initialized to.

For this stage the utility "srec2bin" is used.

For the rom generation srec2bin is called with following options:

For the rom generation srec2bin is called with following options:

-o parameter being set to "0xc880".

The final resulting two bin files are concatinated and the result is copied to:
"YOUR_PROJECT/bin/YOUR_PROJECT.bin"

These options can not be altered.