for my school project i have to make a simple program in MARS 4.5 in assembly language. So far what is confusing me is storing numbers. In this program i have to store 2 numbers of what the user inputs. so far this is my code...
.data
.text
main:
jal GetUserInput
li $v0, 10
syscall
GetUserInput:
#get the input
li $v0, 5
syscall
#move the input
move $t0, $v0
#display the input
li $v0, 1
move $a0, $t0
syscall
so in the main function it will run the getuserinput function, it will then get the input and move it to $t0. does this mean in c# terms its basicily a variable "int $t0 = 10" providing 10 is the number i inputted and i can change that number later on in the program? now if i wanted 2 stored numbers, what would i store the other one in, $t1? im new to assembly language