notaz.gp2x.de
/
picodrive.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
update libpicofe
[picodrive.git]
/
cpu
/
drc
/
cmn.h
1
typedef unsigned char u8;
2
typedef signed char s8;
3
typedef unsigned short u16;
4
typedef unsigned int u32;
5
6
#define DRC_TCACHE_SIZE (2*1024*1024)
7
8
extern u8 tcache[DRC_TCACHE_SIZE];
9
10
void drc_cmn_init(void);
11
void drc_cmn_cleanup(void);
12