Technical Support

C166: _POP_ INTRINSIC LIBRARY ROUTINE


Information in this article applies to:

  • C166 Version 4.06

QUESTION

How can I pop values from the stack in C?

ANSWER

You may use the _pop_ intrinsic library routine to POP word values from the system stack. This library routine returns the 16-bit value that is POPed. For example:

#include <intrins.h>

void testpop (void)  {
  volatile unsigned temp;

  _push_ (temp);
  temp = _pop_ ();
}

MORE INFORMATION

  • Refer to _pop_ in the C166 User's Guide.

SEE ALSO

Last Reviewed: Thursday, October 20, 2005


Did this article provide the answer you needed?
 
Yes
No
Not Sure