diff options
-rw-r--r-- | mips.html.markdown | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mips.html.markdown b/mips.html.markdown index 8e6b8d96..fb1d5ab0 100644 --- a/mips.html.markdown +++ b/mips.html.markdown @@ -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" ``` |