This file contains 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
CODE SEGMENT | |
ASSUME CS:CODE, DS:CODE, SS:CODE, ES:CODE | |
ORG 100H | |
principio: | |
mov ah, 0Fh | |
mov ah, 0 | |
int 10h | |
lea dx, mensaje_a_mostrar | |
mov ah, 9h | |
int 21h | |
int 20h | |
mensaje_a_mostrar db "Hola Mundo!$",0 | |
CODE ENDS | |
end principio |
No hay comentarios:
Publicar un comentario