Skip to content

Instantly share code, notes, and snippets.

@raihan-uddin
Created October 1, 2019 15:14
Show Gist options
  • Save raihan-uddin/5e37a24f87b3e56540ae523c4a82f196 to your computer and use it in GitHub Desktop.
Save raihan-uddin/5e37a24f87b3e56540ae523c4a82f196 to your computer and use it in GitHub Desktop.
Assembly Programming language
.MODEL SMALL
.STACK 100H
.CODE
MAIN PROC
MOV AH,1
INT 21H ;TAKE INPUT
MOV BL,AL
MOV AH,2
MOV DL,BL ;OUTPUT
INT 21H
EXIT:
MOV AH, 4CH
INT 21H
MAIN ENDP
END MAIN
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment