This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Disassembly on Debug

I debug my code and realize that there are some code lines highlighted yellow. I dont know what that means. Also, what is @0x08000038 in the code?

Here is my code:

Fullscreen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
AREA RESET, DATA, READONLY
DCD 0x20001000 ;stack pointer
DCD MAIN
AREA DATA1, DATA, READONLY
KhoaK
DCB 5, 10, 15, 20, 25
DCB 4, 9, 14, 19, 24
DCB 3, 8, 13, 18, 23
DCB 2, 7, 12, 17, 22
DCB 1, 6, 11, 16, 21, 0
XauRo DCB "ABEFZ", 0
AREA DATA2, DATA, READWRITE
XauMa DCB 0
AREA MYCODE, CODE, READONLY
ENTRY
MAIN
LDR R0, =XauRo
LDR R1, =KhoaK
LDR R2, =XauMa
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

0