r16/emu/cpu/stack.h

12 lines
197 B
C
Raw Normal View History

2024-04-19 09:05:10 +00:00
#ifndef EMU_CPU_STACK_H
#define EMU_CPU_STACK_H
#include "./ram.h"
#include "./register.h"
#define STACK_SIZE 256
#define STACK_LOCATION (UINT16_MAX - STACK_SIZE)
#define DO_STACK_CHECKS
#endif