Advertisement
Tariqul_Islam

Example 6.1 Fall-2019

Dec 10th, 2019
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.23 KB | None | 0 0
  1. .model small
  2. .stack 100h
  3. .data
  4. .code
  5. main proc
  6.     mov ah, 2
  7.     mov cx, 256
  8.     mov dl, 0
  9.  
  10.  
  11. print_loop:
  12.  
  13.     int 21h
  14.     inc dl
  15.     dec cx
  16.    
  17.     jnz print_loop
  18.    
  19.     mov ah, 4
  20.     int 21h
  21.     main endp
  22. end main
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement