diff options
Diffstat (limited to 'hw/fdc.h')
-rw-r--r-- | hw/fdc.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/hw/fdc.h b/hw/fdc.h new file mode 100644 index 0000000000..50de250881 --- /dev/null +++ b/hw/fdc.h @@ -0,0 +1,12 @@ +/* fdc.c */ +#define MAX_FD 2 +extern BlockDriverState *fd_table[MAX_FD]; + +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); +int fdctrl_get_drive_type(fdctrl_t *fdctrl, int drive_num); |