]> git.proxmox.com Git - qemu.git/blame - hw/m48t08.h
new bochs BIOS - 16 bit APM support (initial patch by Struan Bartlett)
[qemu.git] / hw / m48t08.h
CommitLineData
420557e8
FB
1#if !defined (__M48T08_H__)
2#define __M48T08_H__
3
4typedef struct m48t08_t m48t08_t;
5
e80cfcfc
FB
6void m48t08_write (m48t08_t *NVRAM, uint32_t addr, uint8_t val);
7uint8_t m48t08_read (m48t08_t *NVRAM, uint32_t addr);
8m48t08_t *m48t08_init(uint32_t mem_base, uint16_t size);
420557e8
FB
9
10#endif /* !defined (__M48T08_H__) */