This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

SYSBIOS Project.out to Project.s19 conversion

Other Parts Discussed in Thread: SYSBIOS

Hi,

 

I want to convert my .out file after project building to .s19 (motorola format)

 

Command i use for generating s19 in the post build setting:

"${CG_TOOL_HEX}.exe" -m2 --byte -memwidth 16 -romwidth 16 -order LS -exclude".trace"  -exclude".args" -exclude"passwords" -exclude"csm_rsvd" -map"${BuildArtifactFileBaseName}.mxp" "${BuildArtifactFileName}" & del ${BuildArtifactFileBaseName}.s19 & ren ${BuildArtifactFileBaseName}.m00 ${BuildArtifactFileBaseName}.s19

 

Expected output (as i was getting with DSP-BIOS):

S0 06 000048 4452 1B

S2 08 600008 0070 5848 7F

S2 22 60000C 7D6A00307D6A00307D6A00307D6A00307D6A00307D6A00307D6A00307D6AE9

S2 22 60002A 00307D6A00307D6A00307D6A00307D6A00307D6A003071C800307B96003006

.....

S2 10 612318 8F0C00308EDC003000000000EE

S8 04 309035 06
 
 

Actual Output (with sysbios build):

S0 06 000048 4452 1B

S2 08 000000 0070 6C54 C7

S2 22 60000C FE02 5200 ED0B 761F 01BF 9A02 9B01 D400 1A05 0002 7670 3CF8 6F1A 761F 01BF AD

S2 22 60002A 9A02D4019B011A03000276703CF828A90DAC76704E1D761F03CD56BF024175

....

S2 08 67FFEC 0070814272

S8 04 306C54 0B

I'm doing this for my debug and release builds, same output.

I am designing a parser to read the S19 output, and hence i am failing here. Please provide inputs to identify the mistake in my conversion command.