mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2024-11-14 13:27:41 -07:00
20 lines
165 B
C++
20 lines
165 B
C++
|
|
#ifndef SPI_H
|
|
#define SPI_H
|
|
|
|
namespace SPI
|
|
{
|
|
|
|
void Init();
|
|
void Reset();
|
|
|
|
u16 ReadCnt();
|
|
void WriteCnt(u16 val);
|
|
|
|
u8 ReadData();
|
|
void WriteData(u8 val);
|
|
|
|
}
|
|
|
|
#endif
|