Result

WA

Duration

496ms

Code [DL]

SECTION .bss
	buf resb 1

SECTION .text
	global main

main:
start:
	mov edx, 1
	mov ecx, buf
	mov ebx, 0
	mov eax, 3
	int 0x80

	cmp eax, 0
	jle end

	mov edx, eax
	mov ecx, buf
	mov ebx, 1
	mov eax, 4
	int 0x80

	jmp start

end:
	mov eax, 1
	mov ebx, 0
	int 0x80

stdin

52 65 02
30 14 04
90 08 78
01 26 18

stdout

52 65 02
30 14 04
90 08 78
01 26 18

stderr

/usr/bin/ld: warning: cannot find entry symbol _start; defaulting to 00000000080480c0

strace