document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  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
');