10. After the instructions below, find out which flags are set? mov ax,5h mov cx,5 L1: dec al loop L1 a) ZF, CF b) ZF, P
Posted: Fri Jul 01, 2022 5:53 am
Assembly-2: .DATA data1 dd 01234567h data2 dd ? .CODE MOV AX,@DATA MOV DS,AX MOV CX, 4 MOV SI, offset data1 MOV DI, offset data2+3 L1: MOV AL,[SI] MOV [DI],AL ADD SI,1 ADD DI,-1 LOOP L1 END the Assembly-2 below.