; max: PeANUt assembler program (function) for COMP2300 Lab Exercise 5 ; global Max ; export Max; ; short int Max(short int a, /* returns max...*/ ; short int b) { /*...of a and b*/ ; Max: ; ; if (b > a) { ; ; return b; ; ; } ; else { ; ; return a; ; ; } ; ; } /*Max()*/ ret ;