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