RosettaCodeData/Task/Pointers-and-references/ARM-Assembly/pointers-and-references.arm
2023-07-01 13:44:08 -04:00

4 lines
202 B
Text

;this example uses VASM syntax, your assembler may not use the # before constants or the semicolon for comments
MOV R1,#0x04000000
MOV R0,#0x403
STR R0,[R1] ;store 0x403 into memory address 0x04000000.