mirror of
https://github.com/FunKey-Project/picodrive-irixxxx.git
synced 2026-02-01 12:35:30 +01:00
17 lines
318 B
C
17 lines
318 B
C
#ifndef UTYPES_DEFINED
|
|
typedef unsigned char u8;
|
|
typedef signed char s8;
|
|
typedef unsigned short u16;
|
|
typedef signed short s16;
|
|
typedef unsigned int u32;
|
|
typedef signed int s32;
|
|
#endif
|
|
|
|
#define DRC_TCACHE_SIZE (2*1024*1024)
|
|
|
|
extern u8 *tcache;
|
|
|
|
void drc_cmn_init(void);
|
|
void drc_cmn_cleanup(void);
|
|
|