correct some wii sd cmd names

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3011 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Shawn Hoffman 2009-04-19 18:56:57 +00:00
parent bf42d9a268
commit 2b906ae8b2
2 changed files with 11 additions and 14 deletions

View File

@ -179,16 +179,19 @@ u32 CWII_IPC_HLE_Device_sdio_slot0::ExecuteCommand(u32 _BufferIn, u32 _BufferInS
switch (req.command)
{
case SWITCH_FUNC:
//return R1
case APP_CMD1:
break;
case SELECT_CARD:
//return R1b
break;
case SEND_CID:
//return R2
case SET_BLOCKLEN:
//return R1
break;
case APP_CMD_NEXT:
//indicates that next cmd doesn't adhere to standards
break;
default:

View File

@ -68,16 +68,10 @@ private:
enum
{
SWITCH_FUNC = 6,
SELECT_CARD = 7, // Selects or Deselects single card
SEND_CID = 10,
SWITCH34 = 34,
SWITCH35 = 35,
SWITCH36 = 36,
SWITCH37 = 37,
SWITCH50 = 50,
SWITCH57 = 57,
APP_CMD1 = 0x06,
SELECT_CARD = 0x07,
SET_BLOCKLEN = 0x10,
APP_CMD_NEXT = 0x37,
};
u32 m_status;