previous | start | next

Summary: pushl and popl

Using R and M notations:

1. pushl x
        R[%esp] = R[%esp] - 4
        M[R[%esp]] = x

2. popl y
        y = M[R[%esp]]
        R[%esp] = R[%esp] + 4
     


previous | start | next