17 lines
337 B
C
17 lines
337 B
C
#ifndef PCI_QEMU_PCI_SERIAL_QEMU_PCI_SERIAL_H_
|
|
#define PCI_QEMU_PCI_SERIAL_QEMU_PCI_SERIAL_H_
|
|
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
|
|
#define QEMU_PCI_SERIAL_MAGIC 0x1234
|
|
|
|
typedef struct {
|
|
uint32_t _magic;
|
|
uint16_t iobase;
|
|
} QemuPciSerialDev;
|
|
|
|
void pci_qemu_pci_serial_init(void);
|
|
|
|
#endif // PCI_QEMU_PCI_SERIAL_QEMU_PCI_SERIAL_H_
|