|
| _push_| Summary |
#include <intrins.h>
void _push_ (
int value); /* value to push */
| | Description | The _push_ function inserts a PUSH instruction into the program which pushes value onto the system stack. | | Return Value | None. | | See Also | _pop_ | | Example |
#include <intrins.h>
void test_pop (void) {
volatile unsigned temp;
_push_ (temp);
temp = _pop_ ();
}
|
Related Knowledgebase Articles |
|