43 lines
1.3 KiB
C
43 lines
1.3 KiB
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.
|
||
|
|
*
|
||
|
|
* Definitions for clock generator chips.
|
||
|
|
*
|
||
|
|
*
|
||
|
|
*
|
||
|
|
* Authors: RichardG, <richardg867@gmail.com>
|
||
|
|
*
|
||
|
|
* Copyright 2020 RichardG.
|
||
|
|
*/
|
||
|
|
#ifndef EMU_CLOCK_H
|
||
|
|
# define EMU_CLOCK_H
|
||
|
|
|
||
|
|
/* clock_ics9xxx.c */
|
||
|
|
extern const device_t ics9150_08_device;
|
||
|
|
extern const device_t ics9248_39_device;
|
||
|
|
extern const device_t ics9248_98_device;
|
||
|
|
extern const device_t ics9250_08_device;
|
||
|
|
extern const device_t ics9250_10_device;
|
||
|
|
extern const device_t ics9250_13_device;
|
||
|
|
extern const device_t ics9250_14_device;
|
||
|
|
extern const device_t ics9250_16_device;
|
||
|
|
extern const device_t ics9250_18_device;
|
||
|
|
extern const device_t ics9250_19_device;
|
||
|
|
extern const device_t ics9250_23_device;
|
||
|
|
extern const device_t ics9250_25_device;
|
||
|
|
extern const device_t ics9250_26_device;
|
||
|
|
extern const device_t ics9250_27_device;
|
||
|
|
extern const device_t ics9250_28_device;
|
||
|
|
extern const device_t ics9250_29_device;
|
||
|
|
extern const device_t ics9250_30_device;
|
||
|
|
extern const device_t ics9250_32_device;
|
||
|
|
extern const device_t ics9250_38_device;
|
||
|
|
extern const device_t ics9250_50_device;
|
||
|
|
|
||
|
|
#endif /*EMU_CLOCK_H*/
|