diff options
author | Spiderpig86 <slim679975@gmail.com> | 2018-08-09 21:26:46 -0400 |
---|---|---|
committer | Spiderpig86 <slim679975@gmail.com> | 2018-08-09 21:26:46 -0400 |
commit | 8239325a3634e852a13444ac3f4fd970da81ccdd (patch) | |
tree | 169f5234cf11031459e3fd1def900b20261c437c /mips.html.markdown | |
parent | b7bb2fc93d9449c35c318d051045c519d5680bb8 (diff) |
feat(mips.html.markdown): Added example for using include statements
Diffstat (limited to 'mips.html.markdown')
-rw-r--r-- | mips.html.markdown | 4 |
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" + ``` |