Programa 2
org 100h
mov ax, 80 ; AX=80
mov bx, 450 ; BX=450
inc bx ;BX++ bx 451
add ax, 80 ; AX=AX+80
mov cx, 200 ; CX=200
sub cx, ax ; CX=CX-AX ;
ret
; programa 2
; ax= 80
; valor de bx en hex
; inc bx 451
; add ax, 80 ax=160
; cx=200
; sub cx,
; sub cx,ax =120
;
; resultados y valor ;
mov ax, 80 ; AX=80
mov bx, 450 ; BX=450
inc bx ;BX++ bx 451
add ax, 80 ; AX=AX+80
mov cx, 200 ; CX=200
sub cx, ax ; CX=CX-AX ;
ret
; programa 2
; ax= 80
; valor de bx en hex
; inc bx 451
; add ax, 80 ax=160
; cx=200
; sub cx,
; sub cx,ax =120
;
; resultados y valor ;
Comentarios
Publicar un comentario