Merge tag 'pull-loongarch-20241016' of https://gitlab.com/gaosong/qemu into staging
[qemu/armbru.git] / include / hw / ide / isa.h
blob1cd0ff1fa6fc14199f99feb117bdf1575d9d9364
1 /*
2 * QEMU IDE Emulation: ISA Bus support.
4 * Copyright (c) 2003 Fabrice Bellard
5 * Copyright (c) 2006 Openedhand Ltd.
7 * SPDX-License-Identifier: MIT
8 */
9 #ifndef HW_IDE_ISA_H
10 #define HW_IDE_ISA_H
12 #include "qom/object.h"
14 #define TYPE_ISA_IDE "isa-ide"
15 OBJECT_DECLARE_SIMPLE_TYPE(ISAIDEState, ISA_IDE)
17 ISADevice *isa_ide_init(ISABus *bus, int iobase, int iobase2, int irqnum,
18 DriveInfo *hd0, DriveInfo *hd1);
20 #endif