Question: Declare an array of integers, something like: .data size: .word 10 array: .word 2, 4, 7, 12, 34, 36, 42, 8, 57, 78 Write a
Declare an array of integers, something like:
.data
size: .word 10 array: .word 2, 4, 7, 12, 34, 36, 42, 8, 57, 78
Write a program that determines if the numbers form an increasing sequence where each integer is greater than the one to its left. If so, it sets $8 to 1, otherwise it sets $8 to 0.
Write the program to work with an array of any size, including 0. Arrays of size 0 and size 1 are considered to be ascending sequences. The array can contain elements that are positive, negative, or zero. Test the program on several sets of data.
Qtspim simulator: The starting address of Data Section is 0x10000000
Mars simulator: The starting address of Data Section may be 0x10010000 (check Settings->Memory Configuration -> .data base address)
Assembly language please
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
