######################################################### # CS61C, Project 2, Spring 2007 # Student Name: # Student ID: # Section: # TA: ######################################################### .text ######################################################### # Declare your global labels here # You can only set breakpoints at global labels ######################################################### .globl ackerman ######################################################### # ackerman Definition # # $a0 = m # $a1 = n # returns the ackerman(m,n) in $v0 # ######################################################### ackerman: ## Your code goes here. ## jr $ra