Skip to content

CS 2810 - Project #7

Write a MIPS Assembly Language Program that inputs and then evaluates and prints the value of a postfix arithmetic expression. All operands in the expression are single digit decimal integers. The only operators are + (addition), - (subtraction), * (multiplication), and / (division). All arithmetic is integer arithmetic. You may assume that all input is valid. You will need to have a stack on which to push operands. It will be a local data entity that is too big to fit in the registers. Refer to CS 2420 text for the algorithm.  Be sure to modularize.  Name your file LlllProj07.asm.