Example #1
0
// peek into the nvm stack for address
void *stack_peek_addr(u08_t index) {
  return vm_get_addr(sp[-index]);
}
Example #2
0
// peek into the nvm stack for address
void *stack_peek_addr(u08_t index) {
  return vm_get_addr(current_task->j_sp[-index]);
}
Example #3
0
// pop address from stack
void *stack_pop_addr(void) {
  return vm_get_addr(*(sp--));
}
Example #4
0
// pop address from stack
void *stack_pop_addr(void) {
  return vm_get_addr(*(current_task->j_sp--));
}