11 Estructura Basico de Un Programa

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

.

model small
.386
.stack 64
.data
V1 db ?
V2 db 234
V3 db “hola”
V4 db 2,’h’,78,”hi”
V5 dw 7
V6 db 3 dup(0)
.code
inicio proc near
mov ax,@data
mov ds,ax
mov ax,v2
sii:
mov dx,1
salir:
mov ax,4c00h
int 21h
inicio endp
end

You might also like