Result

WA

Duration

592ms

Code [DL]

section .data
section .text
global _start

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

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

stdin

91 08 50
73 68 26
09 01 15
40 21 57

stdout

0

stderr

Segmentation fault (core dumped)

strace