fork download
  1. .686
  2. .model flat, c
  3.  
  4. .data
  5. helloFormat byte "Hello, %s!", 10, 13, 0
  6.  
  7. .code
  8. sayHello proc
  9. invoke printf, addr helloFormat, eax
  10. ret
  11. sayHello endp
  12. end
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.s: Assembler messages:
prog.s: Warning: end of file not at end of a line; newline inserted
prog.s:1: Error: unknown pseudo-op: `.686'
prog.s:2: Error: unknown pseudo-op: `.model'
prog.s:5: Error: no such instruction: `helloformat byte "Hello, %s!",10,13,0'
prog.s:7: Error: unknown pseudo-op: `.code'
prog.s:8: Error: no such instruction: `sayhello proc'
prog.s:9: Error: no such instruction: `invoke printf,addr helloFormat,eax'
prog.s:11: Error: no such instruction: `sayhello endp'
prog.s:12: Error: no such instruction: `end'
stdout
Standard output is empty