diff options
author | 2014-04-24 00:15:14 +0000 | |
---|---|---|
committer | 2014-04-24 00:15:14 +0000 | |
commit | dd67f283574b55da3a3b0db466827edfe3c60caf (patch) | |
tree | 0155db83c3e03b6fa323d61a5dc9db091774742c /src/mess/drivers/amstrad.c | |
parent | b9b274e744bde215d84876e76eb987e3aad69282 (diff) |
amstrad: added preliminary Amstrad/Pace RS232C interface. The terminal
software included with the original Amstrad interface works, but not much else
does at this stage. [Barry Rodewald]
Out of whatsnew: HoneyTerm (part of the later Pace interface) expects bit 6
of RR0 on the Z80DART to be set (seems to unsupported in the current z80dart
device). Not sure on why other software doesn't work as yet.
Diffstat (limited to 'src/mess/drivers/amstrad.c')
-rw-r--r-- | src/mess/drivers/amstrad.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mess/drivers/amstrad.c b/src/mess/drivers/amstrad.c index 135839abd0f..41d37f4fac9 100644 --- a/src/mess/drivers/amstrad.c +++ b/src/mess/drivers/amstrad.c @@ -835,6 +835,7 @@ SLOT_INTERFACE_START(cpc_exp_cards) SLOT_INTERFACE("rom", CPC_ROM) SLOT_INTERFACE("multiface2", CPC_MFACE2) SLOT_INTERFACE("pds", CPC_PDS) + SLOT_INTERFACE("rs232", CPC_RS232) SLOT_INTERFACE_END SLOT_INTERFACE_START(cpcplus_exp_cards) @@ -842,6 +843,7 @@ SLOT_INTERFACE_START(cpcplus_exp_cards) SLOT_INTERFACE("dkspeech", CPC_DKSPEECH) SLOT_INTERFACE("rom", CPC_ROM) SLOT_INTERFACE("pds", CPC_PDS) + SLOT_INTERFACE("rs232", CPC_RS232) SLOT_INTERFACE_END static MACHINE_CONFIG_START( amstrad_nofdc, amstrad_state ) |