HW20
COP-3402
Draw the stack frames for the following two functions (after running main and calling
f
, but beforef
returns). Remember to include- the return address,
- the old base pointer, and
- the local variables
function main localVariables retval x x := 2 retval := call f return x end function
function f localVariables x parameters x x := 3 return x end function
- Write
mov
instruction(s) that implementx := 2
above in functionf
.