diff options
author | Spiderpig86 <slim679975@gmail.com> | 2018-08-12 19:18:13 -0400 |
---|---|---|
committer | Spiderpig86 <slim679975@gmail.com> | 2018-08-12 19:18:13 -0400 |
commit | d4c5ff14cc8a0717f68746b4fe84cfb4efbdecf6 (patch) | |
tree | 792b8c5e0b7adf46456d71903564e984a2653d7e /mips.html.markdown | |
parent | b0d5beb4fa3becf12069f14ee95838f14e532ddb (diff) | |
parent | 803c61275c31087b87ce3f691527753d177ded5e (diff) |
Merge branch 'master' of github.com:Spiderpig86/learnxinyminutes-docs
Diffstat (limited to 'mips.html.markdown')
-rw-r--r-- | mips.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mips.html.markdown b/mips.html.markdown index 1e3650d4..1133f769 100644 --- a/mips.html.markdown +++ b/mips.html.markdown @@ -20,7 +20,7 @@ gateways and routers. # Programs typically contain a .data and .text sections .data # Section where data is stored in memory (allocated in RAM), similar to -variables in higher level languages + # variables in higher level languages # Declarations follow a ( label: .type value(s) ) form of declaration hello_world: .asciiz "Hello World\n" # Declare a null terminated string |