mirror of
https://github.com/ekeeke/Genesis-Plus-GX.git
synced 2024-11-05 02:15:07 +01:00
21 lines
400 B
C
21 lines
400 B
C
#ifndef _IO_H_
|
|
#define _IO_H_
|
|
|
|
#define REGION_USA 0x80
|
|
#define REGION_JAPAN_NTSC 0x00
|
|
#define REGION_EUROPE 0xC0
|
|
#define REGION_JAPAN_PAL 0x40
|
|
|
|
/* Global variables */
|
|
extern uint8 io_reg[0x10];
|
|
extern uint8 region_code;
|
|
extern uint8 pad_type;
|
|
|
|
/* Function prototypes */
|
|
extern void io_reset(void);
|
|
extern void io_write(int offset, int value);
|
|
extern int io_read(int offset);
|
|
|
|
#endif /* _IO_H_ */
|
|
|