diff options
Diffstat (limited to 'src/devices/cpu/e132xs/e132xs.h')
-rw-r--r-- | src/devices/cpu/e132xs/e132xs.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/devices/cpu/e132xs/e132xs.h b/src/devices/cpu/e132xs/e132xs.h index 6c838fefb37..fb50a3dfb5b 100644 --- a/src/devices/cpu/e132xs/e132xs.h +++ b/src/devices/cpu/e132xs/e132xs.h @@ -305,6 +305,9 @@ protected: const address_space_config m_program_config; const address_space_config m_io_config; address_space *m_program; + memory_access<32, 1, 0, ENDIANNESS_BIG>::cache m_cache16; + memory_access<32, 2, 0, ENDIANNESS_BIG>::cache m_cache32; + std::function<u16 (offs_t)> m_pr16; std::function<const void * (offs_t)> m_prptr; address_space *m_io; |