summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/coco12.cpp
diff options
context:
space:
mode:
author Felipe Corrêa da Silva Sanches <juca@members.fsf.org>2017-11-30 11:22:01 -0200
committer Felipe Corrêa da Silva Sanches <juca@members.fsf.org>2017-11-30 12:33:54 -0200
commitfd9ce72783df0361efee7d48906d70f2d3e3390a (patch)
tree9ff30aed64b478185d01d04570437aae016af921 /src/mame/drivers/coco12.cpp
parent87da3c3b5e0db7faa60cd8529670e3cdd5f12938 (diff)
fixing/improving metadata on CoCo FDCs: CP-450 and CD-6809
Thanks to Daniel Campos & Datassette.org for the CP-450 disk rom. MAME was calling it CP400_FDC, but the correct name of the disk controller unit is "Prológica CP-450". The ROM was correct (verified checksum), but I renamed it to fix the previous naming mistake. Unfortunately this FDC unit is rare, so I still don't know whats the IC reference for the EPROM on the PCB. There is a photo of the CP-450 disk controller unit at: https://datassette.org/softwares/tandy-trs-color/cp-450-basic-disco-v-10 http://files.datassette.org/softwares/img/wp_20141212_22_08_26_pro.jpg
Diffstat (limited to 'src/mame/drivers/coco12.cpp')
-rw-r--r--src/mame/drivers/coco12.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/coco12.cpp b/src/mame/drivers/coco12.cpp
index fe89a51b5fa..88141100f81 100644
--- a/src/mame/drivers/coco12.cpp
+++ b/src/mame/drivers/coco12.cpp
@@ -353,7 +353,7 @@ SLOT_INTERFACE_START( coco_cart )
SLOT_INTERFACE("fdc", COCO_FDC)
SLOT_INTERFACE("fdcv11", COCO_FDC_V11)
SLOT_INTERFACE("cc3hdb1", COCO3_HDB1)
- SLOT_INTERFACE("cp400_fdc", CP400_FDC)
+ SLOT_INTERFACE("cp450_fdc", CP450_FDC)
SLOT_INTERFACE("cd6809_fdc", CD6809_FDC)
SLOT_INTERFACE("rs232", COCO_RS232)
SLOT_INTERFACE("dcmodem", COCO_DCMODEM)
@@ -530,7 +530,7 @@ MACHINE_CONFIG_END
static MACHINE_CONFIG_DERIVED( cp400, coco )
MCFG_COCO_CARTRIDGE_REMOVE(CARTRIDGE_TAG)
- MCFG_COCO_CARTRIDGE_ADD(CARTRIDGE_TAG, coco_cart, "cp400_fdc")
+ MCFG_COCO_CARTRIDGE_ADD(CARTRIDGE_TAG, coco_cart, "cp450_fdc")
MCFG_COCO_CARTRIDGE_CART_CB(WRITELINE(coco_state, cart_w))
MCFG_COCO_CARTRIDGE_NMI_CB(INPUTLINE(MAINCPU_TAG, INPUT_LINE_NMI))
MCFG_COCO_CARTRIDGE_HALT_CB(INPUTLINE(MAINCPU_TAG, INPUT_LINE_HALT))