• Assembly example for programming ARM Cortex-M4
    I am using a CORTEX-M4 micro controller board. Could you send me an Assembly example for programming the board?
  • Arm Cortex-M0 assembly programming tips and tricks
    The snippets in this document are no real secrets, your C-compiler probably uses them already. But if you're writing assembly-code, it's good to have some snippets ready, when you need them. Substitution...
  • Assembly code
    Hi, I try to execute the following code: LDR R1,=0X40000000 LDR R2,=0X11223344 STR R2,[R1] ADD R1,R1,#3 LDR R2,=0X55667788 STR R2,[R1] ADD R1,R1,#3 LDR R2,=0X99AABBCC STR R2,[R1] ADD R1,R1,#3 LDR R2...