From 6e5e8694c4fe85cac9fb067249c6f4a692b99569 Mon Sep 17 00:00:00 2001 From: Pokechu22 Date: Tue, 25 Aug 2020 15:50:16 -0700 Subject: [PATCH] Implement SendStatus --- Source/Core/Core/HW/EXI/EXI_DeviceSD.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Source/Core/Core/HW/EXI/EXI_DeviceSD.cpp b/Source/Core/Core/HW/EXI/EXI_DeviceSD.cpp index 96dd52d459..065769957d 100644 --- a/Source/Core/Core/HW/EXI/EXI_DeviceSD.cpp +++ b/Source/Core/Core/HW/EXI/EXI_DeviceSD.cpp @@ -335,6 +335,10 @@ void CEXISD::HandleCommand(Command command, u32 argument) response.push_back(0); // R1 // There can be further padding bytes, but it's not needed break; + case Command::SendStatus: + response.push_back(0); // R1 + response.push_back(0); // R2 + break; case Command::SetBlockLen: INFO_LOG_FMT(EXPANSIONINTERFACE, "Set blocklen to {}", argument); // TODO: error if blocklen not 512