mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
21 lines
270 B
C
21 lines
270 B
C
#ifndef EMU64_H
|
|
#define EMU64_H
|
|
|
|
#include "types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern u8 FrameCansel;
|
|
|
|
/* These might be signed */
|
|
extern void emu64_set_aflags(int idx, int value);
|
|
extern int emu64_get_aflags(int idx);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|