Exercise 3:
Debug the following code to find which flags will be after each instructions from these flags
(CF, ZF, OF, SF)
mov ax,7FF0h
add al,10h
add ah,1
add ax,2
Exercise 4:
Write an assembly code that perform the following addition
val1 = (Al + Bl) - val2.
Consider the following initialization
val1 db ??
val2 db 23
mov al,17
mov bl,29