#--------------------------------- # Lab 5: Pixel Conversion in Assembly # # Name: # Onyen: # # -------------------------------- .data startString: .asciiz "Processing Pixels\n" finishString: .asciiz "Finished.\n" Pixels: .word 0x00010000,0x010101,0x6,0x3333,0x030c,0x700853,0x294999,-1 .text main: li $v0, 4 #System call code for print_str la $a0, startString #address of string to print syscall #print the string #------- INSERT YOUR CODE HERE ------- # #(You may delete the comment here when you insert your code) # #------------ END CODE --------------- exit: li $v0, 4 #System call code for print_str la $a0, finishString #address of string to print syscall #print the string li $v0, 10 #System call code for exit syscall #exit the program