|
| _pop_| Summary | |
#include <intrins.h>
int _pop_ (void);
| | Description | | The _pop_ routine inserts a POP instruction into the program which pops the next word from the system stack. | | Return Value | | The _pop_ routine returns the 16-bit value poped from the system stack. | | See Also | | _push_ | | Example | |
#include <intrins.h>
void test_pop (void) {
volatile unsigned temp;
_push_ (temp);
temp = _pop_ ();
}
|
Related Knowledgebase Articles |
|