Added Microsoft serial wheel mouse emulation; AWE32 improvements from JosepMa's PCem branch; Applied REP invalid instruction ignore patch from Greatpsycho; Slightly reordered the list of emulated mice.
31 lines
769 B
C
31 lines
769 B
C
/*
|
|
* 86Box A hypervisor and IBM PC system emulator that specializes in
|
|
* running old operating systems and software designed for IBM
|
|
* PC systems and compatibles from 1981 through fairly recent
|
|
* system designs based on the PCI bus.
|
|
*
|
|
* This file is part of the 86Box distribution.
|
|
*
|
|
* Implementation of Serial Mouse devices.
|
|
*
|
|
* Definitions for the Serial Mouse driver.
|
|
*
|
|
* Version: @(#)mouse_serial.h 1.0.3 2017/06/19
|
|
*
|
|
* Author: Fred N. van Kempen, <decwiz@yahoo.com>
|
|
*/
|
|
#ifndef MOUSE_SERIAL_H
|
|
# define MOUSE_SERIAL_H
|
|
|
|
|
|
#define SERMOUSE_PORT 1 /* attach to Serial1 */
|
|
|
|
|
|
extern mouse_t mouse_msystems;
|
|
extern mouse_t mouse_serial_microsoft;
|
|
extern mouse_t mouse_serial_logitech;
|
|
extern mouse_t mouse_serial_mswheel;
|
|
|
|
|
|
#endif /*MOUSE_SERIAL_H*/
|