You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
SLAE/exam1/shell_bind_tcp.nasm

20 lines
313 B

; Filename: shell_bind_tcp.nasm
; Author: Andrey Arapov <andrey.arapov@gmail.com>
; 2013 March
global _start
section .text
_start:
xor eax, eax ; EAX = 0x000000
mov al, 1 ; EAX = 0x000001 __NR_exit 1:/usr/include/asm/unistd_32.h
xor ebx, ebx ; EBX = 0x000000 0: success status
int 0x80
;section .data