X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=cpu%2Fdrc%2Fcmn.h;h=8953edd12246b4f8ed52996a88b36460111fdca6;hb=00468b0a9b651d930c06d565f3ffc7e704f0e57c;hp=9ddc12b3d3a964670b356f6dc7e48b7e3a42f93d;hpb=a2b8c5a54568093b247ced39f0754cbb30324830;p=picodrive.git diff --git a/cpu/drc/cmn.h b/cpu/drc/cmn.h index 9ddc12b..8953edd 100644 --- a/cpu/drc/cmn.h +++ b/cpu/drc/cmn.h @@ -1,10 +1,11 @@ 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[DRC_TCACHE_SIZE]; +extern u8 *tcache; void drc_cmn_init(void); void drc_cmn_cleanup(void);