2 softwares in 1 S19 file

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

2 softwares in 1 S19 file

1,686 Views
gae037
Contributor I
Hello,
 
I have 2 different software and I want to have only 1 file to download. My two software have a data memory area defined for the variable. The first software is located from 0x6C00 to 0x7FFF and the second one is located from 0x4200 to 0x5AFF.
How can I do to have only one file to download?
Thanks in advance for your answers.
 
 
Labels (1)
0 Kudos
1 Reply

211 Views
CrasyCat
Specialist III
Hello
 
If you want to merge code from two application  (abs file) into one single S19 file, just merge the two .bbl files together.
Can look as follows:
 
Code:
OPENFILE "Appl.s19"format=motorolabusWidth=1origin=0len=0x10000destination=0SRECORD=SxSENDBYTE 1 Appl1.absformat=motorolabusWidth=1origin=0len=0x10000destination=0SRECORD=SxSENDBYTE 1 Appl2.absCLOSE

 
This will merge code from appl1.abs and appl2.abs into a file appl.s19.
 
Use this file as command file in the burner.exe utility.
 
CrasyCat
0 Kudos