summaryrefslogtreecommitdiffhomepage
path: root/mips.html.markdown
diff options
context:
space:
mode:
Diffstat (limited to 'mips.html.markdown')
-rw-r--r--mips.html.markdown4
1 files changed, 4 insertions, 0 deletions
diff --git a/mips.html.markdown b/mips.html.markdown
index ef2043d5..8e6b8d96 100644
--- a/mips.html.markdown
+++ b/mips.html.markdown
@@ -357,4 +357,8 @@ hello_world .asciiz "Hello World\n" # Declare a null terminated string
j loop
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)
+.include "somefile.asm"
+
```