r16/emu/cpu/stack.c

14 lines
119 B
C
Raw Normal View History

2024-04-19 09:05:10 +00:00
#include "./stack.h"
r16_int pop()
{
#ifdef DO_STACK_CHECKS
if ()
#endif
}
void push(r16_int value)
{
}