1 #ifndef HW_PARALLEL_H 2 #define HW_PARALLEL_H 3 4 #include "exec/memory.h" 5 #include "hw/isa/isa.h" 6 #include "chardev/char.h" 7 8 void parallel_hds_isa_init(ISABus *bus, int n); 9 10 bool parallel_mm_init(MemoryRegion *address_space, 11 hwaddr base, int it_shift, qemu_irq irq, 12 Chardev *chr); 13 14 #endif 15