]> Shamusworld >> Repos - virtualjaguar/blob - src/eeprom.h
Fixed missing border color on left hand side of screen.
[virtualjaguar] / src / eeprom.h
1 //
2 // EEPROM.H: Header file
3 //
4
5 #ifndef __EEPROM_H__
6 #define __EEPROM_H__
7
8 #include "types.h"
9
10 void EepromInit(void);
11 void EepromReset(void);
12 void EepromDone(void);
13 void EepromUpdate(void);
14
15 uint8 EepromReadByte(uint32 offset);
16 uint16 EepromReadWord(uint32 offset);
17 void EepromWriteByte(uint32 offset, uint8 data);
18 void EepromWriteWord(uint32 offset, uint16 data);
19
20 #endif  // __EEPROM_H__