diff options
author | 2018-12-20 13:32:42 +0100 | |
---|---|---|
committer | 2018-12-20 13:32:42 +0100 | |
commit | 7ba9c79cdd6c65bc414e9b67aff45f8886ba326e (patch) | |
tree | 64d9ca22747765cbc67d9b8cc1a259b9a698c708 /src/devices/bus/nes_ctrl/ctrl.cpp | |
parent | 0e75c994b8b7921040c1154217b798b8f2477552 (diff) |
-bus/nes_ctrl: Added support for dance mats, used by the nes_vt driver. [David Haywood]
-nes_vt: Hooked up dance mat devices to ddrdismx and ddrstraw. [David Haywood]
-snesb: Renamed rushbeat and spidrmnb to better match the softlist sets. [David Haywood]
-bus/msx_cart/msx_audio, yamaha: Removed MACHINE_CONFIG macros. [Ryan Holtz]
-sound/8950intf, ad1848, k054539, okim6258: Removed MCFG macros. [Ryan Holtz]
-gijoe, konamigx, lethal, mtouchxl, mystwarr, pcat_dyn, piratesh, plygonet, qdrmfgp, rungun,
snk, ultrsprt, xexex: Removed MACHINE_CONFIG macros. [Ryan Holtz]
Diffstat (limited to 'src/devices/bus/nes_ctrl/ctrl.cpp')
-rw-r--r-- | src/devices/bus/nes_ctrl/ctrl.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/devices/bus/nes_ctrl/ctrl.cpp b/src/devices/bus/nes_ctrl/ctrl.cpp index 7618f89dbd7..2724e86dcaf 100644 --- a/src/devices/bus/nes_ctrl/ctrl.cpp +++ b/src/devices/bus/nes_ctrl/ctrl.cpp @@ -212,3 +212,13 @@ void fc_expansion_devices(device_slot_interface &device) device.option_add("barcode_battler", NES_BARCODE_BATTLER); device.option_add("subor_keyboard", NES_SUBORKEYBOARD); } + +void majesco_control_port1_devices(device_slot_interface &device) +{ + device.option_add("ddr", NES_VT_MAJESCO_DDR); +} + +void majesco_control_port2_devices(device_slot_interface &device) +{ + // nothing? +} |