mirror of
https://github.com/GaryOderNichts/WiiUIdent.git
synced 2024-11-04 15:55:07 +01:00
13 lines
214 B
C++
13 lines
214 B
C++
#include "SEEPROM.hpp"
|
|
|
|
#include <mocha/mocha.h>
|
|
|
|
bool SEEPROM::Init()
|
|
{
|
|
if (Mocha_SEEPROMRead((uint8_t*) &cachedSEEPROMData, 0, sizeof(Data)) != sizeof(Data)) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|