mirror of
https://github.com/emu-russia/pureikyubu.git
synced 2025-04-02 10:42:15 -04:00
22 lines
741 B
C
22 lines
741 B
C
/* ---------------------------------------------------------------------------
|
|
Memory operations
|
|
--------------------------------------------------------------------------- */
|
|
|
|
void HLE_memcpy();
|
|
void HLE_memset();
|
|
|
|
/* ---------------------------------------------------------------------------
|
|
String operations
|
|
--------------------------------------------------------------------------- */
|
|
|
|
/* ---------------------------------------------------------------------------
|
|
FP Math
|
|
--------------------------------------------------------------------------- */
|
|
|
|
void HLE_sin();
|
|
void HLE_cos();
|
|
void HLE_modf();
|
|
void HLE_frexp();
|
|
void HLE_ldexp();
|
|
void HLE_floor();
|
|
void HLE_ceil();
|