programa macro

imprime macro msg       ; Declaracion de la macro
    mov ah,09h          ;mensaje e la patalla
    mov dx,offset msg
    int 21h             ;parametros
ENDM                    ;Indica fin del macro

.model small
.stack 20h
.data

    msg Db ,13,10,' Buenas Tardes',13,10,'$'
.code 
    inicio:
        mov ax,@data
        mov ds,ax
       
        imprime msg
       
        mov ah,08h
        int 21h
       
        mov ax,4c00h
        int 21h
       
    end inicio

Comentarios

Entradas populares de este blog

Uso de INT 21h en ej. Limpiar Pantalla.

programa turbo assembler