diff options
author | 2014-08-06 01:44:07 +0000 | |
---|---|---|
committer | 2014-08-06 01:44:07 +0000 | |
commit | 06b51f4e8e05c51adcea02e55c1ef3b9b5242a59 (patch) | |
tree | 172489ef7df99ab917f16f4ef6d5c8e20fb54e8d /src/mess/drivers/amstrad.c | |
parent | ec0a11fb91a7131f81a9b4d2e51553ebf0d4c4c5 (diff) |
amstrad: added support for 64k, 320k, and 576k RAM sizes
added preliminary support for the SYMBiFACE II board [Barry Rodewald]
idehd: added Read Native Max Address IDE command
Diffstat (limited to 'src/mess/drivers/amstrad.c')
-rw-r--r-- | src/mess/drivers/amstrad.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mess/drivers/amstrad.c b/src/mess/drivers/amstrad.c index 814dd3098b0..edc221a1b25 100644 --- a/src/mess/drivers/amstrad.c +++ b/src/mess/drivers/amstrad.c @@ -815,6 +815,7 @@ SLOT_INTERFACE_START(cpc_exp_cards) SLOT_INTERFACE("pds", CPC_PDS) SLOT_INTERFACE("rs232", CPC_RS232) SLOT_INTERFACE("amsrs232", CPC_RS232_AMS) + SLOT_INTERFACE("sf2", CPC_SYMBIFACE2) SLOT_INTERFACE_END SLOT_INTERFACE_START(cpcplus_exp_cards) @@ -824,6 +825,7 @@ SLOT_INTERFACE_START(cpcplus_exp_cards) SLOT_INTERFACE("pds", CPC_PDS) SLOT_INTERFACE("rs232", CPC_RS232) SLOT_INTERFACE("amsrs232", CPC_RS232_AMS) + SLOT_INTERFACE("sf2", CPC_SYMBIFACE2) SLOT_INTERFACE_END static MACHINE_CONFIG_START( amstrad_nofdc, amstrad_state ) @@ -896,6 +898,7 @@ static MACHINE_CONFIG_START( amstrad_nofdc, amstrad_state ) /* internal ram */ MCFG_RAM_ADD(RAM_TAG) MCFG_RAM_DEFAULT_SIZE("128K") + MCFG_RAM_EXTRA_OPTIONS("64K,320K,576K") MACHINE_CONFIG_END FLOPPY_FORMATS_MEMBER( amstrad_state::floppy_formats ) |