X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=cpu%2Fdrc%2Fcmn.h;h=8953edd12246b4f8ed52996a88b36460111fdca6;hb=24aab4da7352b5cecad4e09b0dcc0807b14786f2;hp=a4bce322ca8293e7da76be2d40545d97b2394bd4;hpb=679af8a3f466a2a4a20f58e4181a231fb73e9836;p=picodrive.git diff --git a/cpu/drc/cmn.h b/cpu/drc/cmn.h index a4bce32..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 u32 tcache[DRC_TCACHE_SIZE/4]; +extern u8 *tcache; void drc_cmn_init(void); void drc_cmn_cleanup(void);