X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=cpu%2Fdrc%2Fcmn.h;h=8953edd12246b4f8ed52996a88b36460111fdca6;hb=12f23dac6f91eb707f985ef00a5d48e9e5ef8838;hp=d5ed9ba8ffba8b1f0e210d4ba3d67fb5a5528177;hpb=f4bb5d6b2c96a94317c4edb7805eb6d6ed8589ef;p=picodrive.git diff --git a/cpu/drc/cmn.h b/cpu/drc/cmn.h index d5ed9ba..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 (512*1024) +#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);