summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorSpiderpig86 <slim679975@gmail.com>2018-08-09 21:26:46 -0400
committerSpiderpig86 <slim679975@gmail.com>2018-08-09 21:26:46 -0400
commit8239325a3634e852a13444ac3f4fd970da81ccdd (patch)
tree169f5234cf11031459e3fd1def900b20261c437c
parentb7bb2fc93d9449c35c318d051045c519d5680bb8 (diff)
feat(mips.html.markdown): Added example for using include statements
-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"
+
```