]>
Commit | Line | Data |
---|---|---|
a541f297 FB |
1 | #if !defined (__M48T59_H__) |
2 | #define __M48T59_H__ | |
3 | ||
c5df018e FB |
4 | typedef struct m48t59_t m48t59_t; |
5 | ||
6 | void m48t59_write (m48t59_t *NVRAM, uint32_t val); | |
7 | uint32_t m48t59_read (m48t59_t *NVRAM); | |
8 | void m48t59_set_addr (m48t59_t *NVRAM, uint32_t addr); | |
9 | m48t59_t *m48t59_init (int IRQ, uint32_t io_base, uint16_t size); | |
a541f297 FB |
10 | |
11 | #endif /* !defined (__M48T59_H__) */ |