fork download
  1. CSEG segment
  2. org 100h
  3.  
  4. begin:
  5. sub cx, cx
  6. mov cx, offset vx
  7. sub dx, dx
  8. mov dx, offset end_vx
  9. sub dx, cx
  10. mov cx, dx
  11.  
  12. mov si, offset vx
  13. mov al, 91h
  14. crypt:
  15. xor [si + cx], al
  16. loop crypt
  17. jmp si
  18.  
  19. int 20h
  20.  
  21. vx:
  22. ;ZALOOPA CODE
  23. mov al, 1
  24. mov ah, 1
  25. mov bl, 2
  26. mov bh, 2
  27. end_vx:
  28.  
  29. CSEG ends
  30. end begin
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.asm:1: error: parser: instruction expected
prog.asm:2: error: parser: instruction expected
prog.asm:6: error: comma, colon, decorator or end of line expected after operand
prog.asm:8: error: comma, colon, decorator or end of line expected after operand
prog.asm:12: error: comma, colon, decorator or end of line expected after operand
prog.asm:15: error: invalid effective address
prog.asm:29: error: symbol `CSEG' redefined
prog.asm:29: error: parser: instruction expected
prog.asm:30: error: parser: instruction expected
ld: cannot find prog.o: No such file or directory
stdout
Standard output is empty