Tagged Questions

6
votes
4answers
2k views

where can I find a description of *all* MIPS instructions,

Does anyone know of a web site where I can find a list of 32-bit MIPS instructions/opcodes, with the following features: Clearly distinguishes between real opcodes and assembly-language macros ...
1
vote
2answers
142 views

Instruction set simulator(SystemC) for MIPS architecture

Goodday SOers: Does anybody know if there is a open source MIPS instruction set simulator (in C++ or SystemC preferably)? I googled dozens of links and there is just no open ISS of MIPS cpu. Then ...
1
vote
1answer
110 views

A simple MIPS, question

I have a question, which is kind of confusing Write the MIPS instruction whose machine language encoding is: 0000 0011 0001 1001 0100 0000 0010 1010 Your answer must use register names (like $t0) not ...
1
vote
3answers
2k views

'align' instruction on MIPS

What exactly do this instruction? I know that it try to align data with a multiple of a especific number but, why would you need to do this? Is there an equivalent instruccion in other assemblers?