Page 1 of 1

14. What kind of error will be obtained if the following instructions run? sub r1,14,13 add r1,12,13 mul r6,r1,r7 a) Rea

Posted: Fri Jul 01, 2022 5:53 am
by answerhappygod
14 What Kind Of Error Will Be Obtained If The Following Instructions Run Sub R1 14 13 Add R1 12 13 Mul R6 R1 R7 A Rea 1
14 What Kind Of Error Will Be Obtained If The Following Instructions Run Sub R1 14 13 Add R1 12 13 Mul R6 R1 R7 A Rea 1 (108.36 KiB) Viewed 33 times
14. What kind of error will be obtained if the following instructions run? sub r1,14,13 add r1,12,13 mul r6,r1,r7 a) Read After Write b) Write After Read c) Write After Write Structural
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.