PASTEBIN
| #1 paste tool since 2002
create new paste
tools
api
archive
real-time
faq
PASTEBIN
create new paste
trending pastes
sign up
login
my alerts
my settings
my profile
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
.
Public Pastes
Untitled
0 sec ago
Untitled
1 sec ago
Untitled
D | 1 sec ago
Untitled
6 sec ago
Untitled
6 sec ago
Untitled
6 sec ago
Untitled
6 sec ago
lolwut
C++ | 8 sec ago
Untitled
By: a guest on Feb 12th, 2012 | syntax:
None
| size: 0.26 KB | hits: 38 | expires: Never
download
|
raw
|
embed
|
report abuse
Copied
section .data
msg db "Hello World", 0x0a
section .text
global _start
_start:
push 0
loop:
mov eax, 4
mov ebx, 1
mov ecx, msg
mov edx, 12
int 0x80
inc DWORD [esp-4]
cmp DWORD [esp-4], 10
jl loop
mov eax, 1
mov ebx, 0
int 0x80
create a
new version
of this paste
RAW Paste Data
section .data msg db "Hello World", 0x0a section .text global _start _start: push 0 loop: mov eax, 4 mov ebx, 1 mov ecx, msg mov edx, 12 int 0x80 inc DWORD [esp-4] cmp DWORD [esp-4], 10 jl loop mov eax, 1 mov ebx, 0 int 0x80