feat(mips.html.markdown): Added description and comments for MIPS

This commit is contained in:
spiderpig86 2018-06-17 13:02:17 -04:00
parent 11dbfc2e96
commit 13812cc174

16
mips.html.markdown Normal file
View File

@ -0,0 +1,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.
```