Codebase list arch-test / debian/0.17-1 kfreebsd-i386.s
debian/0.17-1

Tree @debian/0.17-1 (Download .tar.gz)

kfreebsd-i386.s @debian/0.17-1raw · history · blame

.globl _start
.data
msg:	.ascii "ok\n"
.text
_start:
	cmovz	%eax, %ebx	# 686 required as of Debian stretch

	pushl	$3
	pushl	$msg
	pushl	$1
	mov	$4, %eax	# syscall: write
	push	%eax
	int	$0x80
	add	$16, %esp	# pop 3 arguments + dummy * 4 bytes

	pushl	$0
	mov	$1, %eax	# syscall: _exit
	push	%eax
	int	$0x80