Removed the file pointer from the hdd_t struct;
Partially split off the Logitech Serial Mouse emulation from Microsoft Serial Mouse; Slightly reworked serial port emulation (the two UART's are now device_t's, non-FIFO mode implemented and is now default, FIFO mode reimplemented from scratch so it's now actually correct); Added the emulation of the SiS 85c497 chip to the SiS 85c496/497 chipset; Bugfixes to the emulated Super I/O chips and made them all device_t's now.
This commit is contained in:
22
src/sio.h
22
src/sio.h
@@ -8,7 +8,7 @@
|
||||
*
|
||||
* Definitions for the Super I/O chips.
|
||||
*
|
||||
* Version: @(#)sio.h 1.0.3 2018/09/15
|
||||
* Version: @(#)sio.h 1.0.4 2018/11/05
|
||||
*
|
||||
* Author: Fred N. van Kempen, <decwiz@yahoo.com>
|
||||
* Copyright 2017 Fred N. van Kempen.
|
||||
@@ -17,15 +17,17 @@
|
||||
# define EMU_SIO_H
|
||||
|
||||
|
||||
extern void superio_detect_init(void);
|
||||
extern void fdc37c663_init(void);
|
||||
extern void fdc37c665_init(void);
|
||||
extern void fdc37c669_init(void);
|
||||
extern void fdc37c932fr_init(void);
|
||||
extern void fdc37c935_init(void);
|
||||
extern void pc87306_init(void);
|
||||
extern void um8669f_init(void);
|
||||
extern void w83877f_init(uint8_t reg16init);
|
||||
extern const device_t fdc37c663_device;
|
||||
extern const device_t fdc37c665_device;
|
||||
extern const device_t fdc37c666_device;
|
||||
extern const device_t fdc37c669_device;
|
||||
extern const device_t fdc37c932fr_device;
|
||||
extern const device_t fdc37c935_device;
|
||||
extern const device_t pc87306_device;
|
||||
extern const device_t sio_detect_device;
|
||||
extern const device_t um8669f_device;
|
||||
extern const device_t w83877f_device;
|
||||
extern const device_t w83877f_president_device;
|
||||
|
||||
|
||||
#endif /*EMU_SIO_H*/
|
||||
|
||||
Reference in New Issue
Block a user