666daa6823
Anything that moves hundreds of lines out of vl.c can't be all bad. Signed-off-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
18 lines
487 B
C
18 lines
487 B
C
#ifndef HW_FDC_H
|
|
#define HW_FDC_H
|
|
|
|
/* fdc.c */
|
|
#include "blockdev.h"
|
|
#define MAX_FD 2
|
|
|
|
typedef struct FDCtrl FDCtrl;
|
|
|
|
FDCtrl *fdctrl_init_isa(DriveInfo **fds);
|
|
FDCtrl *fdctrl_init_sysbus(qemu_irq irq, int dma_chann,
|
|
target_phys_addr_t mmio_base, DriveInfo **fds);
|
|
FDCtrl *sun4m_fdctrl_init(qemu_irq irq, target_phys_addr_t io_base,
|
|
DriveInfo **fds, qemu_irq *fdc_tc);
|
|
int fdctrl_get_drive_type(FDCtrl *fdctrl, int drive_num);
|
|
|
|
#endif
|