Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Reliability Engineering Designing And Operating Resilient Database Systems

Authors: Laine Campbell, Charity Majors

1st Edition

978-1491925942

More Books

Students also viewed these Databases questions

Question

What are Decision Trees?

Answered: 1 week ago

Question

What is meant by the Term Glass Ceiling?

Answered: 1 week ago