jueves, 8 de febrero de 2018

Resta

Resta

org 100

call inicializar
call restaraxbx
hlt;ordenar para terminar programa

inicializar:
mov ax, 10H
mov bx,12H
ret

restaraxbx:
sub ax,bx
ret

resta sin procedimiento
org 100
mov ax, 10H
mov bx,12H
sub ax,bx
ret

No hay comentarios.:

Publicar un comentario

Macro Potencia de un numero

name "potencia" include "emu8086.inc" include "macroos.txt" .model small data segment     base  dw ? ...