diff options
author | 2022-10-18 17:33:09 -0400 | |
---|---|---|
committer | 2022-10-18 17:35:41 -0400 | |
commit | c0055a0e19f548d21deae6dd6f489f8b7c2d893a (patch) | |
tree | 9e76ed782e02cd35a9734bd6660386dd7ee13ecf /src/devices/bus/vcs_ctrl/ctrl.cpp | |
parent | 6c5326a0578f73e53e8875b3fb544b1ab4da8b87 (diff) |
a400, a800, a800xl, etc.: Adopt and adapt VCS slot device for controller inputs on non-5200 systems
Diffstat (limited to 'src/devices/bus/vcs_ctrl/ctrl.cpp')
-rw-r--r-- | src/devices/bus/vcs_ctrl/ctrl.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/devices/bus/vcs_ctrl/ctrl.cpp b/src/devices/bus/vcs_ctrl/ctrl.cpp index c1d462b8e84..248fcf2b584 100644 --- a/src/devices/bus/vcs_ctrl/ctrl.cpp +++ b/src/devices/bus/vcs_ctrl/ctrl.cpp @@ -85,3 +85,9 @@ void vcs_control_port_devices(device_slot_interface &device) device.option_add("wheel", VCS_WHEEL); device.option_add("keypad", VCS_KEYPAD); } + +void a800_control_port_devices(device_slot_interface &device) +{ + vcs_control_port_devices(device); + device.set_option_machine_config("pad", &vcs_paddles_device::reverse_players); +} |