diff options
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 ) |