In PCSpim, when a program is executed, it displays in the Text Window a line for each instruction.
e.g. [0x00400028] 0x34020004 ori $2, $0, 4 ;13: li $v0, 4
That example loads 4 into the register $v0.
What does the ori $2, $0, 4 mean?
And is 0x34020004 just the same command, but in hexidecimal?
Thanks.