TERCER PROGRAMA EN EMU8086
se realizo un programa que se utilizo intruccion call ,offeset, jump y 4atc todas esas son instrucciones para poder hacer la simulación.
capturas:


codigo:
.model small
.stack
.data
mensaje1 db 13,10, "hola mundo $"
mensaje2 db 13,10, "desarrolo de software $"
mensaje3 db 13,10, "bienvenidos $"
.code
inicio:
mov ax, @data
mov ds, ax
mov dx, offset mensaje1
call imprimir
mov dx, offset mensaje2
call imprimir
mov dx, offset mansaje3
call imprimir
jmp finalizar
imprimir:
mov ah, 9h
int 21h
ret
finalizar:
mov ah, 4ch
int 21h
end inicio
Comentarios
Publicar un comentario