Result

WA

Duration

453ms

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

88 08 01
88 64 83
73 90 17
13 06 66

stdout

stderr

/tmp/code.asm:9: error: invalid operand type
gcc: error: /tmp/code.o: No such file or directory
gcc: fatal error: no input files
compilation terminated.
/bin/script: 16: /bin/script: /tmp/code: not found
rm: cannot remove '/tmp/code.o': No such file or directory
rm: cannot remove '/tmp/code': No such file or directory

strace