任何人都可以向我解释这个短程序的作用吗?
ORIGIN 0x1000
one DEFW 13
two DEFW 29
three DEFW 0
ORIGIN 0x1010
ENTRY
ADR R0, one
LDR R1, [R0]
LDR R2, [R0, #4]
ADD R1, R2, R1
STR R1, [R0, #8]
SWI 2
Run Code Online (Sandbox Code Playgroud)
如果我正确思考,它会将'one'添加到'two'并将结果放在'three'中.我对么?
是.
ORIGIN 0x1000 # Start at address 0x1000
one DEFW 13 # Allocate 4-bytes of space for a variable called one and set it to 13
two DEFW 29 # Allocate 4-bytes of space for a variable called two and set it to 29
three DEFW 0 # Allocate 4-bytes of space for a variable called three and set it to 0
ORIGIN 0x1010 # Skip ahead to address 0x1010 (this really leaves a 4-byte gap)
ENTRY # Mark next instruction as the begining of program
ADR R0, one # Load address of one into R0
LDR R1, [R0] # Load contents of one (pointed to but R0) into R1
LDR R2, [R0, #4] # Load contents of two (pointed to but R0 + 4) into R2
ADD R1, R2, R1 # R1 = R2 + R1
STR R1, [R0, #8] # Store R1 into three (pointed to but R0 + 8)
SWI 2 # Execute a software interrupt
Run Code Online (Sandbox Code Playgroud)
要么
three = one + two
Run Code Online (Sandbox Code Playgroud)
不确定'SWI 2'它可能是您的平台特有的东西.也许只是程序调用的通用结束.