WiiUIdent/source/system/SEEPROM.cpp

13 lines
214 B
C++
Raw Normal View History

2023-03-30 21:40:17 +02:00
#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;
}