Statistics
| Branch: | Revision:

root / hw / m48t59.h @ fa58c156

History | View | Annotate | Download (447 Bytes)

1 a541f297 bellard
#if !defined (__M48T59_H__)
2 a541f297 bellard
#define __M48T59_H__
3 a541f297 bellard
4 c5df018e bellard
typedef struct m48t59_t m48t59_t;
5 c5df018e bellard
6 897b4c6c j_mayer
void m48t59_write (void *private, uint32_t addr, uint32_t val);
7 897b4c6c j_mayer
uint32_t m48t59_read (void *private, uint32_t addr);
8 897b4c6c j_mayer
void m48t59_toggle_lock (void *private, int lock);
9 5dcb6b91 blueswir1
m48t59_t *m48t59_init (qemu_irq IRQ, target_phys_addr_t mem_base,
10 819385c5 bellard
                       uint32_t io_base, uint16_t size,
11 819385c5 bellard
                       int type);
12 a541f297 bellard
13 a541f297 bellard
#endif /* !defined (__M48T59_H__) */