mirror of
https://github.com/LNH-team/pico-loader.git
synced 2026-06-02 09:16:49 +02:00
Add support for the SuperChis (#138)
This commit is contained in:
@@ -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;
|
||||
};
|
||||
Reference in New Issue
Block a user