Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Use only the instruction given. Explain how did you get the answer Convert the given code fragment to assembly code fragment, using only instructions of
Use only the instruction given. Explain how did you get the answer
Convert the given code fragment to assembly code fragment, using only instructions of the following types. These instructions are generally discussed in class. Here X,Y,Z are any memory locations; R,R1,R2 are any general registers; L is a label in the code (you can use any names as labels, ex. L, L1, L2 etc. ). - load X, R //copy contents of memory location X into R. - store R,X //Store contents of R into Mem location X - cmp R1, R2 //Compute R1-R2 and update condition codes; // throw away result of subtraction. - impL// Jump to location L in the code. - impp L //If P bit is 1 , Jump to location L in the code - add X,R //Add contents of X,R and store result in R; //Also update the condition codes. Be careful about what type of argument is allowed in the instruction (Memory or Register). Ex. the first argument of ADD instruction is memory, not register. Do Not use any other instructions (in this, or some other, assembly language). The code segment: while ((XStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started