Add support for the SuperChis (#138)

This commit is contained in:
Edoardo Lolletti
2026-02-15 20:26:24 +01:00
committed by GitHub
parent dca92f3920
commit 7c919cf1c1
22 changed files with 1232 additions and 1164 deletions

View File

@@ -0,0 +1,13 @@
#pragma once
/// @brief Interface for patch code implementing routines to send a SD command
class ISuperCardSendSdCommandPatchCode
{
protected:
ISuperCardSendSdCommandPatchCode() { }
public:
/// @brief Gets a pointer to the send SD command function in the patch code.
/// @return The pointer to the send SD command.
virtual const void* GetSendSdCommandFunction() const = 0;
};