r16/emu/cpu/stack.c
2024-04-19 09:05:10 +00:00

14 lines
119 B
C

#include "./stack.h"
r16_int pop()
{
#ifdef DO_STACK_CHECKS
if ()
#endif
}
void push(r16_int value)
{
}