]> Shamusworld >> Repos - virtualjaguar/blob - src/eeprom.h
Extensive changes to remove gcc 4.x warnings, general code cleanup
[virtualjaguar] / src / eeprom.h
1 //
2 // EEPROM.H: Header file
3 //
4
5 #ifndef __EEPROM_H__
6 #define __EEPROM_H__
7
8 //#include "jaguar.h"
9 #include "types.h"
10
11 void eeprom_init(void);
12 void eeprom_reset(void);
13 void eeprom_done(void);
14 void eeprom_update(void);
15
16 uint8 eeprom_byte_read(uint32 offset);
17 uint16 eeprom_word_read(uint32 offset);
18 void eeprom_byte_write(uint32 offset, uint8 data);
19 void eeprom_word_write(uint32 offset, uint16 data);
20
21 #endif  // __EEPROM_H__