Advertisement
Guest User

Untitled

a guest
Mar 15th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. mov CX, 1            ; CX...1    number of bytes to read
  2.     lea DX, znak  ; pointer to read buffer
  3.    
  4. continues:
  5.     mov AH, 3Fh           ; file read by filehandle
  6.     int 21h               ; INT21 ... file read  
  7.     cmp AX,0
  8.     jz  koniec_suboru     ;uz nic neprecitalo - koniec suboru
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement