python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
what is the range of Branch instruction in mips?
So I have this question that say, beq instruction is executing from 0x80000000 address, what is the lowest destination address you can reach.
the answer is 0x7ffe0004, but I couldn't figure out how t...

user17712660
Votes: 0
Answers: 1
How does store byte work in MIPS when we have word addressable memory?
I have a question after looking at this stackoverflow question (Loading and storing bytes in MIPS).
How does MIPs processor store a byte in the memory? Since the memory is word addressed. As in the qu...

AZ123
Votes: 0
Answers: 0
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
frame stack size in MIPS
I am reading an introductory computer design book. The book explains the inner workings using MIPS, is very information dense and expects the reader to connect the dots.
This is the c code:
main ()
{
...

sanjihan
Votes: 0
Answers: 0