python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Keep getting an exception 5 [address error in store] followed by unaligned address in store. How can I fix this?
My project requires me to enter an expression, convert it to postfix, and then be able to evaluate it. I got taking an input and converting it to an expression. However, while I'm trying push my integ...
Rosie
Votes: 0
Answers: 0
how to empty all the registers already used, to restart the program in MIPS?
I am new to MIPS and I have an assignment for uni.
I have a program(game) in Mips, and I am trying to write a function to restart the game after finishing.
I already have my restart function but the p...
Hamed Rahimi
Votes: 0
Answers: 1
MIPS - SPIM parser immediate value out of range for bitwise ANDI
Was trying to test my program with SPIM and have this message
spim: (parser) immediate value (-16) out of range (0 .. 65535) on line 56 of file code1.a
andi $t1, $t0, 0xfffffff0
what could be the p...
avatar
Votes: 0
Answers: 1
initial stack pointer is not 0x7fffffff in MIPS
I've assembled this a short MIPS assembly code using QtSPIM simulator. I am appending the code for completion:
.text
.globl main
main:
subu $sp,$sp,32 # Stack frame is 32 bytes long
sw $ra,20($sp) #...

sanjihan
Votes: 0
Answers: 1