diff options
author | Isaku Yamahata <yamahata@valinux.co.jp> | 2009-07-02 19:32:06 +0900 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-07-09 16:06:38 -0500 |
commit | 329939776005fad213086e54b038ccd39054e2bc (patch) | |
tree | 98bcd5fd7085b12c1e90b1fb8085846f0007c493 /hw/isa.h | |
parent | 89e671e3f3d5754e78efc447f13386ced719f1f7 (diff) |
split out ioport related stuffs from vl.c into ioport.c.
Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/isa.h')
-rw-r--r-- | hw/isa.h | 8 |
1 files changed, 2 insertions, 6 deletions
@@ -2,13 +2,9 @@ #define HW_ISA_H /* ISA bus */ -extern target_phys_addr_t isa_mem_base; +#include "ioport.h" -int register_ioport_read(int start, int length, int size, - IOPortReadFunc *func, void *opaque); -int register_ioport_write(int start, int length, int size, - IOPortWriteFunc *func, void *opaque); -void isa_unassign_ioport(int start, int length); +extern target_phys_addr_t isa_mem_base; void isa_mmio_init(target_phys_addr_t base, target_phys_addr_t size); |