Subdomain Posts
ASM (NASM) | 3 days ago
ASM (NASM) | 7 days ago
ASM (NASM) | 17 days ago
ABAP | 25 days ago
ASM (NASM) | 51 days ago
ASM (NASM) | 54 days ago
ASM (NASM) | 94 days ago
ASM (NASM) | 109 days ago
None | 399 days ago
ASM (NASM) | 731 days ago
Recent Posts
Bash | 4 sec ago
None | 5 sec ago
XML | 7 sec ago
Bash | 11 sec ago
Python | 13 sec ago
mIRC | 31 sec ago
XML | 33 sec ago
None | 1 min ago
None | 1 min ago
None | 1 min ago
Sitereport
Find cool info about any domain on the internet?
visit sitereport
Free Subdomains
Want a pastebin.com sub-domain for your community?
learn more...
What is pastebin?
Pastebin is a website that hosts all your text & code on dedicated servers for easy sharing.
learn more...
By tekhammer on the 14th of Feb 2009 01:53:42 AM
Download |
Raw |
Embed |
Report
section .bss
buf resb 64
section .data
%define bufsize 64
%define sys_getcwd 183
%define sys_exit 1
%define sys_write 4
lf db 10
section .text
global _start
_start:
mov eax,sys_getcwd
lea ebx,[buf]
mov ecx,bufsize
int 80h
mov eax,sys_write
mov ebx,1
lea ecx,[buf]
mov edx,bufsize
int 80h
call linefd
mov eax,sys_exit
mov ebx,0
int 80h
linefd push eax ; save values of registers to stack
push ebx
push ecx
push edx
mov eax,sys_write
mov ebx,1
mov ecx,lf
mov edx,1
int 80h
pop edx ; return values to normal
pop ecx
pop ebx
pop eax
ret
Submit a correction or amendment below.
Make A New Post