Result

WA

Duration

654ms

Code [DL]

section .data
section .text
global main

write:
push ebp
mov ebp, esp
mov edx, 1
mov ecx, [ebp+8]
mov ebx, 1
mov eax, 4
int 0x80
leave
ret

main:
push ebp
mov ebp, esp
push 0x30
call write
leave
ret

stdin

75 45 95
05 17 83
58 16 21
19 04 77

stdout

/

stderr

/usr/bin/ld: warning: cannot find entry symbol _start; defaulting to 00000000080480a0
Segmentation fault (core dumped)

strace