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

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
URL: / joy
Ignore This:
#shorts, #viral, #tech, #technology, #msaccess , #microsoft , #microsoftoffice365 , #microsoftoffice2013

Пікірлер: 1

  • @maxmuster7003
    @maxmuster7003 Жыл бұрын

    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