Result

WA

Duration

588ms

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

55 11 08
99 14 73
74 50 48
73 09 62

stdout

/

stderr

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

strace