Top "Mips" questions

MIPS is a RISC instruction set architecture (ISA).

Clarifications on signed/unsigned load and store instructions (MIPS)

I can't seem to grasp the concept on these stuff, even with the help of Google and a textbook in …

assembly mips sign-extension zero-extension
How to convert from 4-bit hexadecimal to 7-bit ASCII?

The assigment is to learn assembly programming by writing a subroutine that can convert between 4-bit hexadecimal and 7-bit ASCII. …

assembly hex mips nios
MIPS architecture syscall instruction

What is the role of syscall instruction in MIPS?

mips mips32 mips64
Cache Addressing: Length of Index, Block offset, Byte offset & Tag?

Let's say I know the following values: W = Word length (= 32 bits) S = Cache size in words B = Block size in …

memory mips cpu-cache
Printing the x char in a string (MIPS)

My program is supposed to do the following: -Getting continiously an integer from the user (x), -printing the character at …

assembly mips qtspim
MIPS load word syntax

If I want to load a value from a memory which base address is at $a0 and off set $t2, …

assembly mips
What's the relative speed of floating point add vs. floating point multiply

A decade or two ago, it was worthwhile to write numerical code to avoid using multiplies and divides and use …

floating-point x86 mips numerical-computing flops
Load 32-bit constant to register in MIPS

I was confused about this part while I study MIPS. The textbook written by Professor John L. Hennessy say if …

assembly mips
How can I execute MIPS assembly programs on an x86 linux?

Are there any command line interpreters or any other set of programs around for x86 linux in order to run …

linux assembly x86 mips qemu
What is the use of a $zero register in MIPS?

What is the use of a $zero register in MIPS? What does it mean? lw $t0, myInteger($zero)

mips