CSE331-503 – (Solution)

$ 20.99
Category:

Description

In this assignment you will write a MIPS assembly program and test it using MARS instruction set simulator.
Definition: This program takes one input from an input file, this is an integer array. This program finds a sequence according to increasing order, this program can find more than one sequence but has to return only one sequence that has a maximum length. The outputs of the program are the sequence and the length of the array, the outputs should be written the file.
Example: Array_inp: [3, 10, 7, 9, 4, 11], Array_outp: [3, 7, 9, 11] size = 4 Let’s examine program inner results:
• candidate sequence : [10,11] , size = 2
• candidate sequence : [3,7,9,11] , size = 4
• candidate sequence : [3,10,11] , size = 3
• candidate sequence : [7,9,11] , size = 3
• candidate sequence : [4,11] , size = 2
The inps/outps of the program have to read/write a text file. Showing inner results in console will bring extra points.
You need to write and explain your pseudocode in report file, you have to add time and space complexity. If you add some optimization parts/tricks, please explain in the report file.

Rules:

Submission Rules:
• Platform: Teams CSE 331 page
• For late submission: -25pt for each day, end of the 3 days submission will be closed.
• Submission format must be as follows:
o StudentNo.zip -> StudentNo (folder) -> hw1.asm, Report_hw1.pdf ,
(inp/outp files, header files if need)
• Report file must be include:
o Readable explanation of functions in your code (explanation of inputs and outputs, shortly explanation of function) (not copy all code line by line and insert comment)
o Result of test cases with screenshots & basic explanation. o For assembly part need to show least 6 test result. o Explain if you have a missing parts, bonus parts or adding parts.
o 2-3 pages will suffice.
• Assembly file must be as follows:
o Anyone using a compiler instead of writing the assembly manually will get 0pts.
o Assembly that cannot be executed or designs that are not even simulating can at most get 20pts.
o You can use pseudo instructions in MARS. o Obey the contract, which defines the usage of MIPS registers. o You can assume that input file includes

Reviews

There are no reviews yet.

Be the first to review “CSE331-503 – (Solution)”

Your email address will not be published. Required fields are marked *