Advertisement
frankchang0125

Untitled

Oct 17th, 2012
3,108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ARM 0.35 KB | None | 0 0
  1.     .file   "test_assembly.S"
  2.     .globl  test
  3. test:
  4.         .word   0x12345678
  5.  
  6.         .text
  7.         .globl  test_inst_1
  8. test_inst_1:
  9.         mov     r0, r0
  10.  
  11.         .text
  12.         .globl  test_inst_2
  13. test_inst_2:
  14.         mov     r0, r0
  15.  
  16.         .text
  17.         .globl  test_assembly
  18. test_assembly:
  19.         ldr     r0, test
  20.         mov     pc, lr
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement