Add hidden CS4237B and CS4238B devices

This commit is contained in:
RichardG867
2021-06-03 01:15:23 -03:00
parent dfd6d4e2df
commit ce7db25d7c
2 changed files with 26 additions and 0 deletions

View File

@@ -126,6 +126,8 @@ extern const device_t ncr_business_audio_device;
/* Crystal CS423x */
extern const device_t cs4236b_device;
extern const device_t cs4237b_device;
extern const device_t cs4238b_device;
#endif
#endif /*EMU_SOUND_H*/

View File

@@ -784,3 +784,27 @@ const device_t cs4236b_device =
NULL,
NULL
};
const device_t cs4237b_device =
{
"Crystal CS4237B",
DEVICE_ISA | DEVICE_AT,
CRYSTAL_CS4237B,
cs423x_init, cs423x_close, cs423x_reset,
{ NULL },
cs423x_speed_changed,
NULL,
NULL
};
const device_t cs4238b_device =
{
"Crystal CS4238B",
DEVICE_ISA | DEVICE_AT,
CRYSTAL_CS4238B,
cs423x_init, cs423x_close, cs423x_reset,
{ NULL },
cs423x_speed_changed,
NULL,
NULL
};