fork download
  1. BITS 32
  2.  
  3. call mark_below
  4. msg db "Hello, world!", 0x0a, 0x0d
  5.  
  6. mark_below:
  7. pop ecx
  8. mov eax, 4
  9. mov ebx, 1
  10. mov edx, 15
  11. int 0x80
  12.  
  13. mov eax, 1
  14. mov ebx, 0
  15. int 0x80
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cpp:1:1: error: 'BITS' does not name a type
 BITS 32
 ^
stdout
Standard output is empty