Question: In LC-3 assembly language, create a function that will find the greatest common factor of two numbers. These two numbers are arguments a and b
In LC-3 assembly language, create a function that will find the greatest common factor of two numbers. These two numbers are arguments a and b and are stored in memory. Load them in and them store the result of the operation is a label "ANSWER".
Use the following pseudocode to start:

ANSWER = 0; while (a != b) { if (a > b) { a = a b; } else { b = b - a; } } ANSWER = a; ANSWER = 0; while (a != b) { if (a > b) { a = a b; } else { b = b - a; } } ANSWER = a
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
