diff options
author | 2016-01-10 18:42:23 +0100 | |
---|---|---|
committer | 2016-01-10 18:44:29 +0100 | |
commit | 74b39e26d2fffcdb6e567b06b1f20792a5239bd2 (patch) | |
tree | 6d737f05a10fb274a41649f8eec808a88ca64cfa | |
parent | 833094f88c468f6e52bcf6ce769dab0460e871e3 (diff) |
note
-rw-r--r-- | src/mame/drivers/ticalc1x.cpp | 2 | ||||
-rw-r--r-- | src/mame/drivers/tispeak.cpp | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/mame/drivers/ticalc1x.cpp b/src/mame/drivers/ticalc1x.cpp index 9915661dd07..cbc16d3d7b2 100644 --- a/src/mame/drivers/ticalc1x.cpp +++ b/src/mame/drivers/ticalc1x.cpp @@ -13,6 +13,8 @@ TODO: - MCU clocks are unknown where noted + - fake-press ON button when emulation starts for calculators that have + it on the button matrix (doesn't look like any relies on it though) ***************************************************************************/ diff --git a/src/mame/drivers/tispeak.cpp b/src/mame/drivers/tispeak.cpp index 6904a5ff926..3133f7cb96f 100644 --- a/src/mame/drivers/tispeak.cpp +++ b/src/mame/drivers/tispeak.cpp @@ -1153,6 +1153,8 @@ static MACHINE_CONFIG_START( snspellc, tispeak_state ) MCFG_TMS1XXX_WRITE_O_CB(WRITE16(tispeak_state, snspellc_write_o)) MCFG_TMS1XXX_WRITE_R_CB(WRITE16(tispeak_state, snspellc_write_r)) + /* no visual feedback! */ + /* sound hardware */ MCFG_DEVICE_ADD("tms6100", TMS6100, MASTER_CLOCK/4) |