diff options
author | spiderpig86 <slim679975@gmail.com> | 2018-06-17 13:02:17 -0400 |
---|---|---|
committer | spiderpig86 <slim679975@gmail.com> | 2018-06-17 13:02:17 -0400 |
commit | 13812cc1741729cca7f714be89500da647e09e5c (patch) | |
tree | bdd1ccec390cc6ffac30751e9873a00651142edb /mips.html.markdown | |
parent | 11dbfc2e9650f2fc4ef793f8908efd5e7e8465d5 (diff) |
feat(mips.html.markdown): Added description and comments for MIPS
Diffstat (limited to 'mips.html.markdown')
-rw-r--r-- | mips.html.markdown | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/mips.html.markdown b/mips.html.markdown new file mode 100644 index 00000000..b3be1bb8 --- /dev/null +++ b/mips.html.markdown @@ -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. +```
\ No newline at end of file |