Quantcast
Channel: Understanding ARM Assembly Code - Stack Overflow
Browsing all 2 articles
Browse latest View live

Answer by Pete Fordham for Understanding ARM Assembly Code

Yes.ORIGIN 0x1000 # Start at address 0x1000one DEFW 13 # Allocate 4-bytes of space for a variable called one and set it to 13two DEFW 29 # Allocate 4-bytes of space for a variable called two and set it...

View Article



Understanding ARM Assembly Code

Can anyone explain to me what this short program does?ORIGIN 0x1000one DEFW 13two DEFW 29three DEFW 0ORIGIN 0x1010ENTRYADR R0, oneLDR R1, [R0]LDR R2, [R0, #4]ADD R1, R2, R1STR R1, [R0, #8]SWI 2If I'm...

View Article
Browsing all 2 articles
Browse latest View live




Latest Images