Advertisement
leonard007

while

Nov 9th, 2022
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.30 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:   ;while (al!=0)
  9.  
  10.     and al,al
  11.     jz end_while
  12.     ;cod
  13.     ;cod
  14.     sub al, 1
  15.     jmp while
  16.    
  17. end_while:
  18.    
  19.  
  20. ret
  21.  
  22.  
  23.  
  24.  
  25.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement