Advertisement
apl-mhd

lab pyramid desc

Sep 27th, 2018
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2.  mov bx, 1
  3.  mov ah,2
  4.  
  5. loop1:
  6.     mov cx,bx
  7.     mov dl, 0
  8.     add dl, 30h
  9.    
  10.     loop2:
  11.    
  12.         int 21h
  13.         add dl,1
  14.        
  15.         loop loop2
  16.        
  17.     mov dl, 0Dh
  18.     int 21h
  19.    
  20.     mov dl, 0Ah
  21.     int 21h
  22.    
  23.    
  24.     add bx,1
  25.     cmp bx,5
  26.     jle loop1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement