]> Shamusworld >> Repos - virtualjaguar/blob - src/eeprom.h
Removed some cruft and nonstandard int/uint types, added M series BIOS.
[virtualjaguar] / src / eeprom.h
1 //
2 // EEPROM.H: Header file
3 //
4
5 #ifndef __EEPROM_H__
6 #define __EEPROM_H__
7
8 #include <stdint.h>
9
10 void EepromInit(void);
11 void EepromReset(void);
12 void EepromDone(void);
13 void EepromUpdate(void);
14
15 uint8_t EepromReadByte(uint32_t offset);
16 uint16_t EepromReadWord(uint32_t offset);
17 void EepromWriteByte(uint32_t offset, uint8_t data);
18 void EepromWriteWord(uint32_t offset, uint16_t data);
19
20 #endif  // __EEPROM_H__