有人可以向我解释一下这个简短的程序是做什么的吗?
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
如果我正确思考,它会将'one'添加到'two'并将结果放在'three'中。我是对的吗?
答案 0 :(得分:7)
是
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
或
three = one + two
不确定'SWI 2'它可能是您的平台特有的东西。也许只是程序调用的通用结束。