Advertisement
Guest User

Untitled

a guest
Aug 13th, 2017
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. section .data
  2. msg     db      'Como programar em Assembly - Curso Assembly Progressivo', 0AH
  3. len     equ     $-msg
  4.  
  5. section .text
  6. global  _start
  7. _start: mov     edx, len
  8.         mov     ecx, msg
  9.         mov     ebx, 1
  10.         mov     eax, 4
  11.         int     80h
  12.  
  13.         mov     ebx, 0
  14.         mov     eax, 1
  15.         int     80h
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement