Advertisement
Guest User

Untitled

a guest
Jan 20th, 2018
288
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.32 KB | None | 0 0
  1. asm(
  2.     ".globl aFunc1\n\t"
  3.     ".type aFunc1, @function\n\t"
  4.     "aFunc1:\n\t"
  5.     ".cfi_startproc\n\t"
  6.     "ret\n\t"
  7.     ".cfi_endproc\n\t"
  8. );
  9.  
  10. asm(
  11.     ".globl aFunc2\n\t"
  12.     ".type aFunc2, @function\n\t"
  13.     "aFunc2:\n\t"
  14.     ".cfi_startproc\n\t"
  15.     "call aFunc1\n\t"
  16.     "ret\n\t"
  17.     ".cfi_endproc\n\t"
  18. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement