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:

In LC-3 assembly language, create a function that will find the greatest

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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!