e80cfcfc88
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1179 c046a42c-6fe2-441c-8c8c-71466251a162
11 lines
299 B
C
11 lines
299 B
C
#if !defined (__M48T08_H__)
|
|
#define __M48T08_H__
|
|
|
|
typedef struct m48t08_t m48t08_t;
|
|
|
|
void m48t08_write (m48t08_t *NVRAM, uint32_t addr, uint8_t val);
|
|
uint8_t m48t08_read (m48t08_t *NVRAM, uint32_t addr);
|
|
m48t08_t *m48t08_init(uint32_t mem_base, uint16_t size);
|
|
|
|
#endif /* !defined (__M48T08_H__) */
|