22 lines
396 B
C
22 lines
396 B
C
#ifndef __ADDRS_H__
|
|
#define __ADDRS_H__
|
|
#include "mem_seg.h"
|
|
|
|
#define IOREG_SREG_ADDR 0x5F
|
|
#define IOREG_SPH_ADDR 0x5E
|
|
#define IOREG_SPL_ADDR 0x5D
|
|
#define IOREG_EIND_ADDR 0x5C
|
|
#define IOREG_RAMPZ_ADDR 0x5B
|
|
|
|
|
|
#define GPREG_ZH_ADDR 31
|
|
#define GPREG_ZL_ADDR 30
|
|
|
|
#define GPREG_YH_ADDR 29
|
|
#define GPREG_YL_ADDR 28
|
|
|
|
#define GPREG_XH_ADDR 27
|
|
#define GPREG_XL_ADDR 26
|
|
|
|
|
|
#endif // ifndef __ADDRS_H__
|