// // xgcc -S -O2 -I/cygdrive/c/usr/PIECE/include/ test1.c // #include unsigned char vbuff[DISP_X * DISP_Y]; void pceAppInit() { pceLCDSetBuffer(vbuff); pceLCDDispStart(); } void pceAppProc(int count) { int pad = pcePadGet(); if(pad & TRG_SELECT) { pceAppReqExit(0); return; } pceLCDTrans(); } void pceAppExit() { }