1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-01 12:30:48 +02:00

chore(mips.html.markdown): Fixed line wrapping

This commit is contained in:
Spiderpig86
2018-08-09 21:30:41 -04:00
parent 8239325a36
commit 7cd9cef81e

View File

@@ -358,7 +358,8 @@ hello_world .asciiz "Hello World\n" # Declare a null terminated string
end_loop:
## INCLUDE ##
# You do this to import external files into your program (behind the scenes, it really just takes whatever code that is in that file and places it where the include statement is)
# You do this to import external files into your program (behind the scenes,
# it really just takes whatever code that is in that file and places it where the include statement is)
.include "somefile.asm"
```