Page 1 of 1

Q1. In the following program (Intel Assembly Language), assume that a, b, x, y are symbols for main memory locations. Wh

Posted: Thu May 26, 2022 10:02 am
by answerhappygod
Q1 In The Following Program Intel Assembly Language Assume That A B X Y Are Symbols For Main Memory Locations Wh 1
Q1 In The Following Program Intel Assembly Language Assume That A B X Y Are Symbols For Main Memory Locations Wh 1 (24.77 KiB) Viewed 13 times
Q1. In the following program (Intel Assembly Language), assume that a, b, x, y are symbols for main memory locations. What does the program do? You can answer the question by writing the equivalent logic in C. mov eax,a mov ebx,b xor eax,x xor ebx,y or eax,ebx jnz L2 ;sequence of instructions... ;another sequence of instructions... L1: L2: L3: jmp L3