tetris/game-ctrl/eeprom.h

14 lines
175 B
C
Raw Normal View History

2024-04-19 11:38:32 +02:00
#ifndef _EEPROM_H_
#define _EEPROM_H_
#include <stdint.h>
void eepromInit();
uint16_t eepromReadHighScore();
void eepromWriteHighScore(uint16_t v);
#endif // _EEPROM_H_