Question: Given a JAVA pseudo code in the following, Write its equivalent code segment in MARIE Simulator assembly language then assemble it. Please submit your source
Given a JAVA pseudo code in the following, Write its equivalent code segment in MARIE Simulator assembly language then assemble it. Please submit your source code (.mas) file, and make sure you comment each line of your codes.
int sum = 0;
for (int i = 0; i < 10; i++) {
sum = sum + i;
}
The following code can be used to initialize the variables sum, i, one, and ten.
sum, DEC 0 / initial value of sum, i.e. 0, used to save result
i, DEC 0 /used for loop counter
one, DEC 1 /used for counter, subtract one after each loop
ten, DEC 10 / because we will repeatedly add 10 times
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
