mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 07:17:45 -04:00
12 lines
232 B
C
12 lines
232 B
C
typedef unsigned char u8;
|
|
typedef signed char s8;
|
|
typedef unsigned short u16;
|
|
typedef unsigned int u32;
|
|
|
|
#define DRC_TCACHE_SIZE (2*1024*1024)
|
|
|
|
extern u8 *tcache;
|
|
|
|
void drc_cmn_init(void);
|
|
void drc_cmn_cleanup(void);
|
|
|