mirror of
https://github.com/holub/mame
synced 2025-04-24 17:30:55 +03:00
Fixed validation error with teletypewriter.
This commit is contained in:
parent
77db219891
commit
351e33cdbf
@ -337,7 +337,7 @@ static MACHINE_CONFIG_FRAGMENT( generic_terminal )
|
||||
|
||||
MCFG_SPEAKER_STANDARD_MONO("bell")
|
||||
MCFG_SOUND_ADD("beeper", BEEP, 2'000)
|
||||
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "bell", 1.0)
|
||||
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "bell", 0.50)
|
||||
MACHINE_CONFIG_END
|
||||
|
||||
machine_config_constructor generic_terminal_device::device_mconfig_additions() const
|
||||
|
@ -217,6 +217,10 @@ MACHINE_CONFIG_FRAGMENT( generic_teleprinter )
|
||||
MCFG_SCREEN_UPDATE_DEVICE(DEVICE_SELF, teleprinter_device, tp_update)
|
||||
MCFG_DEVICE_ADD(KEYBOARD_TAG, GENERIC_KEYBOARD, 0)
|
||||
MCFG_GENERIC_KEYBOARD_CB(WRITE8(generic_terminal_device, kbd_put))
|
||||
|
||||
MCFG_SPEAKER_STANDARD_MONO("bell")
|
||||
MCFG_SOUND_ADD("beeper", BEEP, 2'000)
|
||||
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "bell", 0.50)
|
||||
MACHINE_CONFIG_END
|
||||
|
||||
machine_config_constructor teleprinter_device::device_mconfig_additions() const
|
||||
|
Loading…
Reference in New Issue
Block a user