Advertisement
frankchang0125

Untitled

Oct 18th, 2012
3,109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  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
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement