# shell for a SPIM program including required documentation # # Name: xxxxxx # Semester: Spring 2002 # Class: CS 216 # Section: xxxx # Instructor: xxxxxxxxxx # Assignment: homework xxxx # Problem: xxxxxxxxxxxxxx # Filename: xxxxxxxx # # the directives used below (.asciz .data .text) # are described on pages a-51 to a-52 of the text # # the system calls for input and output are # described on pages a-48 and a-49 of the text # .data # variable declarations go here .text main: # your code starts here addi $v0,$zero,10 syscall #exit #end of program