document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1.     .file   "test_assembly.S"
  2.     .globl  test
  3. test:
  4.         .long   0x12345678
  5.  
  6.         .text
  7.         .globl  test_inst_1
  8. test_inst_1:
  9.         mov     %eax, %eax
  10.  
  11.         .text
  12.         .globl test_inst_2
  13. test_inst_2:
  14.         mov     %eax, %eax
  15.  
  16.         .text
  17.         .globl  test_assembly
  18. test_assembly:
  19.         mov     test, %ebx
  20.         ret
');