mirror of
https://github.com/libretro/Mu.git
synced 2026-02-12 13:44:55 +00:00
14 lines
252 B
C
14 lines
252 B
C
#ifndef SD_CARD_H
|
|
#define SD_CARD_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
void sdCardReset(void);
|
|
|
|
void sdCardSetChipSelect(bool value);
|
|
bool sdCardExchangeBit(bool bit);
|
|
uint32_t sdCardExchangeXBitsOptimized(uint32_t bits, uint8_t size);
|
|
|
|
#endif
|