.model small
; Macro for printing messages
printmsg macro msg push ax push bx push cx push dx LEA dx,msg mov ah,09h int 21h pop dx pop cx pop bx pop ax endm