Top "Mips" questions

MIPS is a RISC instruction set architecture (ISA).

MIPS label addressing?

This is all related, and I tried to piece it all together as logically as I could, so please bear …

assembly mips labels addressing machine-language
Big Endian and Little Endian

Given is the snap shot of memory of a byte-addressable computer. What would be loaded into register $16 after execution of …

mips computer-architecture endianness mips32
RISC-V assembly simulator

I'm trying to learn the RISC-V ISA. Is there a way to simulate RISC-V assembly code just like in MARS …

mips riscv risc
'align' instruction on MIPS

What exactly does this instruction do? I know that it tries to align data with a multiple of a specific …

memory assembly alignment mips instruction-set
Difference between register indirect and base plus offset in MIPS addressing mode?

What is the difference between register indirect and base plus offset, and how does it affect how you write assembly …

assembly architecture mips addressing-mode
What is an "interlocked pipeline" as in the MIPS acronym?

I am going through a MIPS procesor architecture. As per this tutorial it states : Microprocessor without Interlocked Pipeline Stages http://…

mips
Shifting the Sign extended constant in MIPS

Why do we shift by 2 the sign extended 16bit constant in branching instruction in MIPS? I am confused with this …

constants mips bit-shift 16-bit sign-extension
Convert Binary to Decimal in MIPS, Assembly MARS

I am trying to convert binary to decimal in the MIPS language, using the MARS simulator. The program accepts a …

assembly mips base-conversion mars-simulator
reading the file name from user input in MIPS assembly

I'm writing a MIPS assembly code that will ask the user for the file name and it will produce some …

assembly mips mars-simulator
Why do MIPS operations on unsigned numbers give signed results?

When I try working on unsigned integers in MIPS, the result of every operation I do remains signed (that is, …

mips unsigned