Got an iPhone or iPad? We have a brand new Pastebin App for both devices, and it's totally free! Click here to download the new Pastebin App for iOS.
Guest

Untitled

By: a guest on Feb 12th, 2012  |  syntax: None  |  size: 0.26 KB  |  hits: 38  |  expires: Never
download  |  raw  |  embed  |  report abuse
Copied
  1. section .data
  2.         msg db "Hello World", 0x0a
  3.        
  4. section .text
  5. global _start
  6.  
  7. _start:
  8.         push 0
  9.        
  10. loop:
  11.         mov eax, 4
  12.         mov ebx, 1
  13.         mov ecx, msg
  14.         mov edx, 12
  15.         int 0x80
  16.         inc DWORD [esp-4]
  17.         cmp DWORD [esp-4], 10
  18.         jl loop
  19.  
  20.         mov eax, 1
  21.         mov ebx, 0
  22.         int 0x80