963e94a97b
We are going to require the macro from other files, too, so move this #define to the header file. Message-Id: <20230512124033.502654-9-thuth@redhat.com> Acked-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
16 lines
346 B
C
16 lines
346 B
C
#ifndef HW_PARALLEL_H
|
|
#define HW_PARALLEL_H
|
|
|
|
#include "hw/isa/isa.h"
|
|
#include "chardev/char.h"
|
|
|
|
#define TYPE_ISA_PARALLEL "isa-parallel"
|
|
|
|
void parallel_hds_isa_init(ISABus *bus, int n);
|
|
|
|
bool parallel_mm_init(MemoryRegion *address_space,
|
|
hwaddr base, int it_shift, qemu_irq irq,
|
|
Chardev *chr);
|
|
|
|
#endif
|