Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the difference between MIPS and RISC?

Tags:

mips

It says that MIPS is a type of RISC. What is the history? Are both formats / instruction models / programming models, how to tell MIPS from RISC? Is RISC a wider concept?

like image 974
Niklas Rosencrantz Avatar asked Oct 22 '12 02:10

Niklas Rosencrantz


2 Answers

Yes. RISC is a wider concept. MIPS is RISC (Reduced Instruction Set Chip) architecture. Reduced (RISC) architectures tend to be simpler and have a small number of operations. Complex (CISC) architectures like x86 have more instructions, some of which take the place of a sequence of RISC instructions.

like image 148
John Watts Avatar answered Sep 20 '22 11:09

John Watts


From the mips taginfo page:

MIPS is a common RISC (Reduced Instruction Set Computer) ISA (Instruction Set Architecture), one of the first of its kind. Currently, MIPS can refer to both a hardware implementation of the ISA and the assembly language itself.

like image 36
mtk Avatar answered Sep 18 '22 11:09

mtk