Input character in Assembly Language


TITLE Program to Input character in Assembly Language
.model small
.stack

.code
mov ah,01h;
int 21h;

mov ah,4ch;
int 21h;
end

No comments:

Post a Comment