14 lines
119 B
C
14 lines
119 B
C
|
#include "./stack.h"
|
||
|
|
||
|
r16_int pop()
|
||
|
{
|
||
|
#ifdef DO_STACK_CHECKS
|
||
|
if ()
|
||
|
#endif
|
||
|
}
|
||
|
|
||
|
void push(r16_int value)
|
||
|
{
|
||
|
|
||
|
}
|