Implement SendStatus

This commit is contained in:
Pokechu22 2020-08-25 15:50:16 -07:00
parent 167d87e5cb
commit 6e5e8694c4

View File

@ -335,6 +335,10 @@ void CEXISD::HandleCommand(Command command, u32 argument)
response.push_back(0); // R1 response.push_back(0); // R1
// There can be further padding bytes, but it's not needed // There can be further padding bytes, but it's not needed
break; break;
case Command::SendStatus:
response.push_back(0); // R1
response.push_back(0); // R2
break;
case Command::SetBlockLen: case Command::SetBlockLen:
INFO_LOG_FMT(EXPANSIONINTERFACE, "Set blocklen to {}", argument); INFO_LOG_FMT(EXPANSIONINTERFACE, "Set blocklen to {}", argument);
// TODO: error if blocklen not 512 // TODO: error if blocklen not 512