LP5569 Programming
36
SNVU564A – July 2017 – Revised August 2017
Copyright © 2017, Texas Instruments Incorporated
Using the BOOST-LP5569EVM Evaluation Module
.hex file: The .src file is translated to the following .hex file by the assembler (lasm.exe).
Figure 41. Example .hex File
.lst file: The .lst file is generated by the assembler (lasm.exe). The listing file contains the source code
along with the compiled machine code and is helpful for debugging and seeing how source code is
translated into machine code. The first column is the row number, the second column indicates the SRAM
memory address, the third column shows the machine code data and the fourth column includes the
source code.
Table 9. Example .lst File
001
; This is a demonstration to
display a slow
002
; ramp of all 3 colors for each
tri-color LED
003
004
00 0111 ENG1:
dw
0000 0001 0001 0001b
005
01 008C ENG2:
dw
0000 0000 1000 1100b
006
02 0062 ENG3:
dw
0000 0000 0110 0010b
007