Tom Kelliher, CS 220
Nov. 19, 1997
The project and the remainder of the semester.
For 11/24: The SPIM paper.
Five questions:
In a nutshell, the RISC design philosophy: KISS, unless there's good reason to do otherwise.
Bits and pieces:
Examples:
.
.
.
(two gates).
Starting from
.data
stack: .word 0:128
tosPtr: .word
arg: .word
value: .word
rtnAddr: .word
.text
__start: la tosPtr, stack
mul temp, 4, 128
add tosPtr, tosPtr, temp
implement push and pop for a stack.