mirror of
https://github.com/Lorenzooone/Pokemon-Gen3-to-Gen-X.git
synced 2026-03-21 17:24:39 -05:00
14 lines
278 B
C
14 lines
278 B
C
#ifndef SIO__
|
|
#define SIO__
|
|
|
|
#define SIO_32 1
|
|
#define SIO_8 0
|
|
|
|
#define SIO_MASTER 1
|
|
#define SIO_SLAVE 0
|
|
|
|
void init_sio_normal(int is_master, int is_32);
|
|
int sio_normal(int data, int is_master, int is_32);
|
|
int timed_sio_normal_master(int data, int is_32, int vCountWait);
|
|
|
|
#endif |