DCPU16 27
[COAL] For Loop Reverse Alphabets Guest on 12th November 2020 10:43:19 AM
  1. .model small
  2. .stack 100h
  3. .data
  4. .code
  5. main proc
  6.    mov bh, 90
  7.    mov cx,26
  8.    
  9. Label1:  
  10.      mov dl,bh
  11.      mov ah,2
  12.      int 21h  
  13.      mov dl,10
  14.      mov ah,2
  15.      int 21h
  16.      mov dl,13
  17.      mov ah,2
  18.      int 21h
  19.      dec bh
  20.  
  21.      loop Label1    
  22.    
  23.      mov ah,4ch
  24.      int 21h
  25.    
  26.     main endp
  27. end main

Coding Base is for source code and general debugging text.

Login or Register to edit, delete and keep track of your pastes and more.

Raw Paste

Login or Register to edit or fork this paste. It's free.