lasips2.h (298B)
1/* 2 * QEMU LASI PS/2 emulation 3 * 4 * Copyright (c) 2019 Sven Schnelle 5 * 6 */ 7#ifndef HW_INPUT_LASIPS2_H 8#define HW_INPUT_LASIPS2_H 9 10#include "exec/hwaddr.h" 11 12#define TYPE_LASIPS2 "lasips2" 13 14void lasips2_init(MemoryRegion *address_space, hwaddr base, qemu_irq irq); 15 16#endif /* HW_INPUT_LASIPS2_H */