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