fork download
  1.  
  2. section .text
  3. global _start
  4.  
  5. _start:
  6.  
  7. mov ebx,$
  8. mov eax,1
  9. int 0x80
  10.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.s: Assembler messages:
prog.s:2: Error: no such instruction: `section .text'
prog.s:3: Error: no such instruction: `global _start'
prog.s:7: Error: missing or invalid immediate expression `' taken as 0
prog.s:7: Error: suffix or operands invalid for `mov'
prog.s:8: Error: too many memory references for `mov'
prog.s:9: Error: suffix or operands invalid for `int'
stdout
Standard output is empty