summaryrefslogtreecommitdiffhomepage
path: root/mips.html.markdown
blob: b3be1bb8e9ffd020f90385e3000f9e711ed674bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---
language: "MIPS"
filename: MIPS.mips
contributors:
  - ["Stanley Lim", "https://github.com/Spiderpig86"]
---

The MIPS (Microprocessor without Interlocked Pipeline Stages) Assembly language is designed to work with the MIPS microprocessor paradigm designed by J. L. Hennessy in 1981. These RISC processors are used in embedded systems such as gateways and routers.

[Read More](https://en.wikipedia.org/wiki/MIPS_architecture)

```assembly
# Comments are denoted with a '#'

# Everything that occurs after a '#' will be ignored by the assembler's lexer.
```