fork(7) download
  1. jumpIfEqual PROC var1:DWORD, var2:DWORD, jmpAddress:DWORD
  2. mov eax,var1
  3. cmp eax,var2
  4. jne skip
  5. pop eax
  6. push jmpAddress
  7. skip:
  8. ret
  9. jumpIfEqual ENDP
  10.  
  11.  
  12. push OFFSET jumpToHere
  13. mov eax, 5
  14. push eax
  15. push eax
  16. call jumpIfEqual
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.asm:1: error: parser: instruction expected
prog.asm:9: error: symbol `jumpIfEqual' redefined
prog.asm:9: error: parser: instruction expected
prog.asm:12: error: comma, colon or end of line expected
stdout
Standard output is empty