feat(mips.html.markdown): Added example for using include statements

This commit is contained in:
Spiderpig86 2018-08-09 21:26:46 -04:00
parent b7bb2fc93d
commit 8239325a36

View File

@ -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"
```