summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/hmcs40/hmcs40.h
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2020-02-08 00:01:57 +1100
committer Vas Crabb <vas@vastheman.com>2020-02-08 00:01:57 +1100
commit43ab8a7d0d1c01e02ece4c3beccea4083c511225 (patch)
treecdb74105511cf8a5584a23f83943258c7ea6df44 /src/devices/cpu/hmcs40/hmcs40.h
parent927906163401b32433f18d2d92c72f196bc1f7f8 (diff)
that should be the rest of the devcb arrays switched to new syntax (nw)
Diffstat (limited to 'src/devices/cpu/hmcs40/hmcs40.h')
-rw-r--r--src/devices/cpu/hmcs40/hmcs40.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/cpu/hmcs40/hmcs40.h b/src/devices/cpu/hmcs40/hmcs40.h
index 78203849835..ffc480395f4 100644
--- a/src/devices/cpu/hmcs40/hmcs40.h
+++ b/src/devices/cpu/hmcs40/hmcs40.h
@@ -175,9 +175,9 @@ protected:
u8 m_r[8]; // R outputs state
u16 m_d; // D pins state
- // i/o handlers
- devcb_read8 m_read_r[8];
- devcb_write8 m_write_r[8];
+ // I/O handlers
+ devcb_read8::array<8> m_read_r;
+ devcb_write8::array<8> m_write_r;
devcb_read16 m_read_d;
devcb_write16 m_write_d;