mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
More AX Wii work - ax parsing corrected (hopefully), still no sound :p
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1102 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -28,7 +28,7 @@ enum
|
||||
class CUCode_AX : public IUCode
|
||||
{
|
||||
public:
|
||||
CUCode_AX(CMailHandler& _rMailHandler, bool wii = false);
|
||||
CUCode_AX(CMailHandler& _rMailHandler);
|
||||
virtual ~CUCode_AX();
|
||||
|
||||
void HandleMail(u32 _uMail);
|
||||
@ -55,14 +55,13 @@ private:
|
||||
int *templbuffer;
|
||||
int *temprbuffer;
|
||||
|
||||
bool wii_mode;
|
||||
|
||||
// ax task message handler
|
||||
bool AXTask(u32& _uMail);
|
||||
|
||||
void SendMail(u32 _uMail);
|
||||
int ReadOutPBs(int a, AXParamBlock *_pPBs, int _num);
|
||||
void WriteBackPBs(AXParamBlock *_pPBs, int _num);
|
||||
};
|
||||
|
||||
int ReadOutPBs(u32 pbs_address, AXParamBlock* _pPBs, int _num);
|
||||
void WriteBackPBs(u32 pbs_address, AXParamBlock* _pPBs, int _num);
|
||||
|
||||
|
||||
#endif // _UCODE_AX
|
||||
|
Reference in New Issue
Block a user