Addtion & Subtraction in ASM
Below coding is the example of addition and subtraction in assembly language. name “add-sub” org 100h mov al,5 mov bl,10 add bl,al sub bl,1
Below coding is the example of addition and subtraction in assembly language. name “add-sub” org 100h mov al,5 mov bl,10 add bl,al sub bl,1