Advertisement
Guest User

nltc

a guest
Aug 18th, 2019
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. .section .rodata
  2. .hi:
  3.     .string "Hi"
  4.  
  5. .globl main
  6.  
  7. main:
  8.  
  9. pushq   %rbp
  10. movq    %rsp,%rbp
  11. xorq    %rdi,%rdi
  12. leaq    .hi(%rip),%rdi
  13. call    printf
  14. xorq    %rax,%rax
  15. leave
  16. ret
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement