summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/isa/isa_cards.cpp
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2019-06-01 13:16:13 +0200
committer hap <happppp@users.noreply.github.com>2019-06-01 13:16:29 +0200
commit22b7b3f4de27688543645390cf234f88dfb2332e (patch)
tree3ec741ecfbb8f9f3d849e2ebd6813b7aedc86b03 /src/devices/bus/isa/isa_cards.cpp
parenta8bdd97c9611f8386a3a581c4b45c0c8e83a2180 (diff)
added shared chessmachine device for Mephisto risc, chessmachine EC, chessmachine DR (nw)
Diffstat (limited to 'src/devices/bus/isa/isa_cards.cpp')
-rw-r--r--src/devices/bus/isa/isa_cards.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/devices/bus/isa/isa_cards.cpp b/src/devices/bus/isa/isa_cards.cpp
index d2eabd9d547..c97866bdf5e 100644
--- a/src/devices/bus/isa/isa_cards.cpp
+++ b/src/devices/bus/isa/isa_cards.cpp
@@ -73,7 +73,8 @@
#include "pds.h"
// other
-#include "chessm.h"
+#include "chessmdr.h"
+#include "chessmsr.h"
#include "finalchs.h"
@@ -122,7 +123,8 @@ void pc_isa8_cards(device_slot_interface &device)
device.option_add("pds", ISA8_PDS);
device.option_add("lba_enhancer", ISA8_LBA_ENHANCER);
device.option_add("asc88", ASC88);
- device.option_add("chessm", ISA8_CHESSM);
+ device.option_add("chessmdr", ISA8_CHESSMDR);
+ device.option_add("chessmsr", ISA8_CHESSMSR);
device.option_add("finalchs", ISA8_FINALCHS);
}
@@ -161,7 +163,8 @@ void pc_isa16_cards(device_slot_interface &device)
device.option_add("dectalk", ISA8_DECTALK);
device.option_add("pds", ISA8_PDS);
device.option_add("lba_enhancer", ISA8_LBA_ENHANCER);
- device.option_add("chessm", ISA8_CHESSM);
+ device.option_add("chessmdr", ISA8_CHESSMDR);
+ device.option_add("chessmsr", ISA8_CHESSMSR);
device.option_add("finalchs", ISA8_FINALCHS);
// 16-bit
device.option_add("ide", ISA16_IDE);