fork(1) download
  1. .386
  2. .model flat, stdcall
  3. includelib \masm32\lib\kernel32.lib
  4. ExitProcess proto: DWORD
  5.  
  6. .code
  7. start:
  8. mov ax, 2211h
  9. mov ecx, 66554433h
  10. mov bl, [esp]
  11.  
  12. push ax
  13. push ecx
  14. pop ax
  15. pop ecx
  16.  
  17. mov ecx, [esp - 6]
  18. mov ax, [esp - 2]
  19.  
  20. invoke ExitProcess, 0
  21. end start
  22.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c:1:1: error: expected identifier or '(' before numeric constant
 .386
 ^
prog.c:3:1: error: stray '\' in program
 includelib \masm32\lib\kernel32.lib
 ^
prog.c:3:1: error: stray '\' in program
prog.c:3:1: error: stray '\' in program
prog.c:8:11: error: invalid suffix "h" on integer constant
   mov ax, 2211h
           ^
prog.c:9:12: error: invalid suffix "h" on integer constant
   mov ecx, 66554433h
            ^
stdout
Standard output is empty