summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorspiderpig86 <slim679975@gmail.com>2018-07-08 21:32:51 -0400
committerspiderpig86 <slim679975@gmail.com>2018-07-08 21:32:51 -0400
commite566cee6c046fe680c7be0a745d447c3818420d9 (patch)
tree084b0e75adfc258c1ba5608934470d336f055b87
parent119c4172bb4eec083b23a86f784809705276e51a (diff)
chore(mips.html.markdown): Fixed minor space issue
-rw-r--r--mips.html.markdown6
1 files changed, 3 insertions, 3 deletions
diff --git a/mips.html.markdown b/mips.html.markdown
index 6a9a7c2a..dd7bc7b5 100644
--- a/mips.html.markdown
+++ b/mips.html.markdown
@@ -1,6 +1,6 @@
---
-language: "MIPS"
-filename: MIPS.mips
+language: "MIPS Assembly"
+filename: MIPS.asm
contributors:
- ["Stanley Lim", "https://github.com/Spiderpig86"]
---
@@ -42,7 +42,7 @@ hello_world .asciiz "Hello World\n" # Declare a null terminated string
.align 2 # Memory alignment of data, where
# number indicates byte alignment in
# powers of 2. (.align 2 represents
- #word alignment since 2^2 = 4 bytes)
+ # word alignment since 2^2 = 4 bytes)
.text # Section that contains instructions
# and program logic