Advertisement
Guest User

Untitled

a guest
Nov 19th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. extern printf
  2.  
  3. section .data
  4.     napis   db "Enter number: ",0
  5.  
  6. section .text
  7.     global main
  8. main:
  9.     ;wyswietlanie tekstu
  10.     xor     rax,    rax
  11.     mov     rdi,    qword  napis
  12.     call printf
  13.    
  14.     ;koniec
  15.     mov rax,1
  16.     mov rbx,0
  17.     int 80h
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement