aboutsummaryrefslogtreecommitdiff
path: root/include/hw/char/parallel.h
blob: d6dd62fb9f1c7859667e65a410b082c3fec06b70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef HW_PARALLEL_H
#define HW_PARALLEL_H

#include "exec/memory.h"
#include "hw/isa/isa.h"
#include "chardev/char.h"

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