Skip to content

Instantly share code, notes, and snippets.

@ehzawad
Last active February 25, 2016 07:42
Show Gist options
  • Select an option

  • Save ehzawad/4e401988da132cc0575f to your computer and use it in GitHub Desktop.

Select an option

Save ehzawad/4e401988da132cc0575f to your computer and use it in GitHub Desktop.
.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