#####################################################################
#	Title:   CSCI 221 - Hello MIPS World
#	Author:  Bary W Pollack
#	File:    HelloWorld.asm
#	Date:    Jan. 21, 2010 - 1300
#####################################################################

	.data
titl:	.ascii	"\nHello MIPS World!\n\n"
	.asciiz	"My name is Bary W Pollack\n"

#####################################################################

	.globl	main

	.text
main:
	li	$v0, 4 		# code for Print String
	la	$a0, titl	# load address of titl into $a0
	syscall			# print the title message

	li	$v0, 10		# terminate program and
	syscall			# return control to the system

	.end

#####################################################################
