Question
1. Write a MIPS ASSEMBLY program that reads and stores an array of 10 records, each record consists of name of type string of up
1. Write a MIPS ASSEMBLY program that reads and stores an array of 10 records, each record consists of name of type string of up to 40 characters, age of type integer, and salary of type integer.
2. Write a program that prints the array of records of Part(i) in a readable format (a single line for each employee).
3. Write a program that swaps any two records, and then prints the entire array. The program must ask the user to enter the record numbers. Assume the record are numbered from 1 to 10. For example, if the user enters 4 and 7, then the program swaps the record 4 and the record 7.
The following code illustrates how a record can be read, stored, and printed.
#The following reads two records Emp1 and Emp2, each record consists of two attributes, name and of type string of up to 40 characters and salary of type integer, and then prints both records
.data
Emp: .space 88
newline: .asciiz" "
.text
#read and store the name of the first record.
la $a0, Emp
li $a1, 40
li $v0, 8
syscall
#reads and store the salary of the first record.
li $v0, 5
syscall
sw $v0, 40($a0)
#read and store the name of the second record.
addi $a0, 44
li $a1, 40
li $v0, 8
syscall
#read and store the salary of the second record.
li $v0, 5
syscall
sw $v0, 40($a0)
# print the name of first record.
li $v0,4
la $a0, Emp
syscall
#print the salay of the first record.
move $t1, $a0
li $v0, 1
lw $a0, 40($t1)
syscall
# start a new line
li $v0,4
la $a0, newline
syscall
#print the name of the second record.
addi $a0,$a0, 44
syscall
#print the salary of the second record.
li $v0, 1
lw $a0, 84($t1)
syscall
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started