#Application 1 .text 0x00400000 #Code section #Using function 4 (Display message) li $v0,4 #Load the function number la $a0,msg #Load the message starting address syscall #Function call #Using function 10 (Termination) li $v0,10 #Load the function number syscall #Function call .data #Data section msg: .asciiz "My first program \n"