Advertisement
sharifuddin

star print withour loop

Apr 6th, 2017
331
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ; You may customize this and other start-up templates;
  2. ; The location of this template is c:\emu8086\inc\0_com_template.txt
  3.  
  4. org 100h
  5.  
  6. .data
  7.  stars db  0ah,0dh,'***********',0ah,0dh, '$'
  8.  mid db '***'
  9.  c1 db ?
  10.  c2 db ?
  11.  c3 db ?,'***',0ah,0dh,'$'
  12.  
  13.  
  14.  .code
  15.    
  16.    
  17.  mov ax,@data
  18.  mov DS,ax         ;
  19.  
  20.  
  21.  mov ah,1   ;single Char input
  22.  int 21h    ; every input output process here
  23.  
  24.  mov c1,al
  25.  int 21h
  26.        
  27.          mov c2,al
  28.  int 21h
  29.  
  30.   mov c3,al
  31.  int 21h  
  32.  
  33.  
  34.          
  35.          mov ah,2
  36.          mov dl,0dh
  37.          int 21h
  38.          
  39.          
  40.          mov ah,9
  41.          
  42.          lea dx,stars
  43.          
  44.          int 21h
  45.          int 21h
  46.          int 21h
  47.          int 21h
  48.          int 21h
  49.          lea dx,mid
  50.          
  51.          int 21h
  52.          
  53.          lea dx,stars
  54.          
  55.          int 21h
  56.          int 21h
  57.          int 21h
  58.          int 21h
  59.          int 21h
  60.    
  61.  
  62. ret
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement