diff options
Diffstat (limited to 'hw/fdc.h')
-rw-r--r-- | hw/fdc.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/hw/fdc.h b/hw/fdc.h new file mode 100644 index 0000000..7b6a9de --- /dev/null +++ b/hw/fdc.h @@ -0,0 +1,11 @@ +/* fdc.c */ +#define MAX_FD 2 + +typedef struct fdctrl_t fdctrl_t; + +fdctrl_t *fdctrl_init (qemu_irq irq, int dma_chann, int mem_mapped, + target_phys_addr_t io_base, + BlockDriverState **fds); +fdctrl_t *sun4m_fdctrl_init (qemu_irq irq, target_phys_addr_t io_base, + BlockDriverState **fds, qemu_irq *fdc_tc); +int fdctrl_get_drive_type(fdctrl_t *fdctrl, int drive_num); |