Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 12th, 2012  |  syntax: ASM (NASM)  |  size: 0.35 KB  |  hits: 21  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
This paste has a previous version, view the difference. Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. section .data
  2.             str:  db 'Pedrobear is a faggot',10
  3.             str1: equ $-str
  4.  
  5.  
  6.     section .text
  7.             global_start
  8.  
  9.     _start:
  10.             mov eax,4
  11.             mov ebx,1
  12.             mov ecx,str
  13.             mov edx,str1
  14.  
  15.             int 80h            
  16.  
  17.             mov eax,1
  18.             mov ebx,0
  19.  
  20.             int 80h