diff options
Diffstat (limited to 'src/devices/cpu/nec/nec.h')
-rw-r--r-- | src/devices/cpu/nec/nec.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/devices/cpu/nec/nec.h b/src/devices/cpu/nec/nec.h index 7734c1dd40c..025aecc17fc 100644 --- a/src/devices/cpu/nec/nec.h +++ b/src/devices/cpu/nec/nec.h @@ -102,6 +102,9 @@ private: uint8_t m_halted; address_space *m_program; + memory_access<24, 0, 0, ENDIANNESS_LITTLE>::cache m_cache8; + memory_access<24, 1, 0, ENDIANNESS_LITTLE>::cache m_cache16; + std::function<u8 (offs_t address)> m_dr8; address_space *m_io; int m_icount; |