Perform an assembly language program for adding 2 numbers in assembly (8086)|#8086,#microprocessor

preview_player
Показать описание
Title:- Perform an assembly language program for adding 2 numbers in assembly (8086)

Hello, Guy's In this video I will Show you how to Perform an assembly language program for adding 2 numbers in assembly (8086)

---------------------------------------------------------------------------
Music: Joy
Musician: ASHUTOSH

Ignore This:
#shorts, #viral, #tech, #technology, #msaccess , #microsoft , #microsoftoffice365 , #microsoftoffice2013
Рекомендации по теме
Комментарии
Автор

Variation:

num1 dw 5
num2 dw 2
sum dw ?

mov bx, [num1]
mov si, [num2]
lea ax, [bx+si] ; no memory access and no flag touched, the result have to fit the target register
mov [sum], ax

maxmuster