Advertisement
Guest User

Untitled

a guest
Oct 10th, 2015
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. .model tiny
  2. .code
  3. org 100h
  4.  
  5. e:
  6. mov ah, 02h
  7. mov al, cs:[82h]
  8. sub al, '0' ; можно вместо '0' вставить 30h
  9. mov bx, 3
  10. sub bx, '3'
  11. div bx
  12. l mov dl, al
  13. int 21h
  14. ret
  15. num db 2
  16. end e
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement