EXPORT void CALL ProcessAList(void){ #ifdef ENABLE_TRACE_COMPARE rsp_run_with_trace(); #else rsp_run (); #endif }
EXPORT DWORD CALL ProcessAListCountCycles(void) { #define CF 8 SPCycleCount = 0; #ifdef ENABLE_TRACE_COMPARE rsp_run_with_trace(); #else rsp_run (); #endif if( SPCycleCount < 1600*CF ) SPCycleCount = 1600*CF; return SPCycleCount/CF; }