mirror of
https://github.com/nitraiolo/CfgUSBLoader.git
synced 2024-12-04 17:14:14 +01:00
12 lines
160 B
C
12 lines
160 B
C
|
#ifndef _SDHC_H_
|
||
|
#define _SDHC_H_
|
||
|
|
||
|
#include "types.h"
|
||
|
|
||
|
/* Prototypes */
|
||
|
int sdhc_Init(void);
|
||
|
bool sdhc_Read(u32 sector, u32 numSectors, void *buffer);
|
||
|
|
||
|
#endif
|
||
|
|