Clarification on Figure 8.5

classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

Clarification on Figure 8.5

OrionMaster
In Figure 8.5, the book mentions to pop whatever value there is at ARG. Where should this be saved? As a temporary value?
Reply | Threaded
Open this post in threaded view
|

Re: Clarification on Figure 8.5

cadet1620
Administrator
OrionMaster wrote
In Figure 8.5, the book mentions to pop whatever value there is at ARG. Where should this be saved? As a temporary value?
pop() means to pop the value off the top of the stack, as in chapter 7.
The popped value gets placed in the RAM location that ARG points to.

--Mark
Reply | Threaded
Open this post in threaded view
|

Re: Clarification on Figure 8.5

OrionMaster
Thank You