Create a simple file with your commands in Assembly:
#Easy1
1) Compute the area of a circle.
# Input radius
#Output : All the proper messages and the area of the circle.
#Easy2
The above within a loop => so that they will repeat untill the input is negative.
#Easy 3
Compute the average of an array
# Input -, it will be in the memory
#Output : All the proper messages and the average.
#Medium
Compute the sum of the elements of an array.
#Difficult
Sort an array
# Even more Difficult
compute n!, which is equal to 1*2*3*4*....*n, for N>2 (you can eather ask the user or you can have it in the memory as a .word)
In MIPS assembly, write an assembly language program which asks a user for a decimal number, converts it to hex, prints the result.