Last active
February 25, 2016 07:42
-
-
Save ehzawad/4e401988da132cc0575f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .model small | |
| .stack 100h | |
| .data | |
| char db ? | |
| .code | |
| main proc | |
| mov ah,1 | |
| int 21h | |
| add al, 20h | |
| ; sub al, 20h | |
| mov char, al | |
| mov ah, 2 | |
| mov dl, char | |
| int 21h | |
| main endp | |
| end main |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment