From b0d5beb4fa3becf12069f14ee95838f14e532ddb Mon Sep 17 00:00:00 2001 From: Spiderpig86 Date: Sun, 12 Aug 2018 19:17:57 -0400 Subject: chore(mips.html.markdown): Added missing colon --- mips.html.markdown | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'mips.html.markdown') diff --git a/mips.html.markdown b/mips.html.markdown index fb1d5ab0..1e3650d4 100644 --- a/mips.html.markdown +++ b/mips.html.markdown @@ -23,7 +23,7 @@ gateways and routers. 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 + hello_world: .asciiz "Hello World\n" # Declare a null terminated string num1: .word 42 # Integers are referred to as words # (32 bit value) @@ -359,7 +359,8 @@ hello_world .asciiz "Hello World\n" # Declare a null terminated string ## 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) +# it really just takes whatever code that is in that file and places it where +# the include statement is) .include "somefile.asm" ``` -- cgit v1.2.3