summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/segahang.h
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2016-08-03 18:01:49 -0400
committer AJR <ajrhacker@users.noreply.github.com>2016-08-05 19:05:01 -0400
commitda754c80782425a4c63d2da0a2635ca4fbaf16a5 (patch)
tree22e55dc4ec81a097a24346d2d735ad8348315933 /src/mame/includes/segahang.h
parent1317019974231191a0a42d732ef9b603dcd00896 (diff)
Devfind revision phase 2 (nw)
- Eliminate read_safe as a global function and make it a method of optional_ioport (and required_ioport, for which it makes less sense). - New constructor for optional_ioport_array and required_ioport_array using std::initializer_list to specify tag list - Remove pointer/reference conversion operators for required_ioport and optional_ioport. Explicit getters like found() and target() are now required when dereferencing isn't wanted. Many drivers have been changed to use required_ioport_array and optional_ioport_array to make this cleaner. - Update numerous drivers that were using read_safe to use I/O port finders generally. Port names have been kept the same as far as possible to avoid breaking saves.(Some of the optional finders should probably be required.) - Give edfbl and monkelf their own memory maps so hacky input reading routines can be removed. - Clean up some legacy static handlers in amiga.cpp and cubo.cpp.
Diffstat (limited to 'src/mame/includes/segahang.h')
-rw-r--r--src/mame/includes/segahang.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mame/includes/segahang.h b/src/mame/includes/segahang.h
index c0813a111fe..ee17b9e6f27 100644
--- a/src/mame/includes/segahang.h
+++ b/src/mame/includes/segahang.h
@@ -38,6 +38,7 @@ public:
m_workram(*this, "workram"),
m_sharrier_video(false),
m_adc_select(0),
+ m_adc_ports(*this, {"ADC0", "ADC1", "ADC2", "ADC3"}),
m_decrypted_opcodes(*this, "decrypted_opcodes")
{ }
@@ -109,6 +110,7 @@ protected:
// internal state
UINT8 m_adc_select;
+ optional_ioport_array<4> m_adc_ports;
bool m_shadow;
optional_shared_ptr<UINT16> m_decrypted_opcodes;
};