aboutsummaryrefslogtreecommitdiff
path: root/hw/m48t59.h
blob: cfe9b2af5e86871d2b33e9e7f3e7ed60b030ab27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#if !defined (__M48T59_H__)
#define __M48T59_H__

typedef struct m48t59_t m48t59_t;

void m48t59_write (m48t59_t *NVRAM, uint32_t addr, uint32_t val);
uint32_t m48t59_read (m48t59_t *NVRAM, uint32_t addr);
void m48t59_toggle_lock (m48t59_t *NVRAM, int lock);
m48t59_t *m48t59_init (qemu_irq IRQ, target_phys_addr_t mem_base,
                       uint32_t io_base, uint16_t size,
                       int type);

#endif /* !defined (__M48T59_H__) */