Advertisement
leonard007

dowhile

Nov 9th, 2022
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.24 KB | None | 0 0
  1.  
  2. ; You may customize this and other start-up templates;
  3. ; The location of this template is c:\emu8086\inc\0_com_template.txt
  4.  
  5. org 100h
  6.  
  7. mov al, 3
  8. while:
  9.     sub al,1
  10.  
  11.     cmp al, 0
  12.     jnz while
  13.    
  14. end_while:
  15.    
  16.  
  17. ret
  18.  
  19.  
  20.  
  21.  
  22.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement