Result

WA

Duration

616ms

Code [DL]

section .data
section .text
global _start

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

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

stdin

19 94 73
52 08 73
01 26 19
55 51 52

stdout

stderr

Segmentation fault (core dumped)

strace