mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 01:29:42 -06:00
- I've implemented cache of interrupt states for PEFINISH and PETOKEN
- I've implemented calling to ProcessFifoEvents when is there is a pending event in the main queue from CP, PE & GP - I've implemented FifoIntReset(TRUE, TRUE) in write Clear Register. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6572 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -15,6 +15,7 @@ typedef void (*TSetInterrupt)(u32 _causemask, bool _bSet);
|
||||
typedef int (*TRegisterEvent)(const char *name, TimedCallback callback);
|
||||
typedef void (*TScheduleEvent_Threadsafe)(int cyclesIntoFuture, int event_type, u64 userdata);
|
||||
typedef void (*TRemoveEvent)(int event_type);
|
||||
typedef void (*TProcessFifoEvents)(void);
|
||||
typedef unsigned char* (*TGetMemoryPointer)(const unsigned int _iAddress);
|
||||
typedef void (*TVideoLog)(const char* _pMessage, int _bBreak);
|
||||
typedef void (*TSysMessage)(const char *fmt, ...);
|
||||
@ -82,6 +83,7 @@ typedef struct
|
||||
TRegisterEvent pRegisterEvent;
|
||||
TScheduleEvent_Threadsafe pScheduleEvent_Threadsafe;
|
||||
TRemoveEvent pRemoveEvent;
|
||||
TProcessFifoEvents pProcessFifoEvents;
|
||||
TGetMemoryPointer pGetMemoryPointer;
|
||||
TVideoLog pLog;
|
||||
TSysMessage pSysMessage;
|
||||
@ -197,5 +199,6 @@ EXPORT bool CALL Video_IsFifoBusy(void);
|
||||
|
||||
EXPORT void CALL Video_AbortFrame(void);
|
||||
|
||||
|
||||
#include "ExportEpilog.h"
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user