Advertisement
apl-mhd

Assembly loop print

Jul 22nd, 2018
688
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. mov bh,0
  2.  
  3.  
  4. init:
  5. cmp bh,10
  6. jl lop
  7.  
  8. hlt
  9. lop:
  10. add bh,1
  11.  
  12. mov ah,2
  13.  
  14. mov dl,bh
  15.  
  16. add dl, 30h
  17.  
  18. int 21h
  19.  
  20. jmp init
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement