mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-08-21 05:51:31 +02:00
chore(mips.html.markdown): Fixed minor space issue
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
language: "MIPS"
|
language: "MIPS Assembly"
|
||||||
filename: MIPS.mips
|
filename: MIPS.asm
|
||||||
contributors:
|
contributors:
|
||||||
- ["Stanley Lim", "https://github.com/Spiderpig86"]
|
- ["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
|
.align 2 # Memory alignment of data, where
|
||||||
# number indicates byte alignment in
|
# number indicates byte alignment in
|
||||||
# powers of 2. (.align 2 represents
|
# 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
|
.text # Section that contains instructions
|
||||||
# and program logic
|
# and program logic
|
||||||
|
Reference in New Issue
Block a user