MPASM 18
Program to output char "A" - Assembly Coal Class 1 Guest on 9th October 2020 02:40:54 PM
  1. .model small
  2. .stack 100h
  3. .data
  4.  
  5. .code
  6. main proc
  7.     mov dl,65
  8.            
  9.     mov ah,2      
  10.     int 21h      
  11.     mov ah,4ch
  12.     int 21h
  13.    
  14.     main endp
  15. 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.