mirror of
https://github.com/LNH-team/pico-loader.git
synced 2026-06-02 17:26:48 +02:00
21 lines
606 B
C++
21 lines
606 B
C++
#pragma once
|
|
#include "sections.h"
|
|
#include "patches/PatchCode.h"
|
|
#include "../IReadSectorsPatchCode.h"
|
|
|
|
DEFINE_SECTION_SYMBOLS(g003_readsd);
|
|
|
|
extern "C" void g003_readSd(u32 srcSector, void* dst, u32 sectorCount);
|
|
|
|
class G003ReadSdPatchCode : public PatchCode, public IReadSectorsPatchCode
|
|
{
|
|
public:
|
|
explicit G003ReadSdPatchCode(PatchHeap& patchHeap)
|
|
: PatchCode(SECTION_START(g003_readsd), SECTION_SIZE(g003_readsd), patchHeap) { }
|
|
|
|
const ReadSectorsFunc GetReadSectorsFunction() const override
|
|
{
|
|
return (const ReadSectorsFunc)GetAddressAtTarget((void*)g003_readSd);
|
|
}
|
|
};
|