comparison mame_z80/z80.h @ 1508:2e57910fd641 mame_interp

More efficient memory access when using MAME interpreters
author Michael Pavone <pavone@retrodev.com>
date Sun, 31 Dec 2017 10:03:25 -0800
parents 2455662378ed
children
comparison
equal deleted inserted replaced
1507:2455662378ed 1508:2e57910fd641
92 const uint8_t * m_cc_cb; 92 const uint8_t * m_cc_cb;
93 const uint8_t * m_cc_ed; 93 const uint8_t * m_cc_ed;
94 const uint8_t * m_cc_xy; 94 const uint8_t * m_cc_xy;
95 const uint8_t * m_cc_xycb; 95 const uint8_t * m_cc_xycb;
96 const uint8_t * m_cc_ex; 96 const uint8_t * m_cc_ex;
97 uint8_t *read_pointers[64/8];
98 uint8_t *write_pointers[64/8];
97 }; 99 };
98 100
99 #define z80_invalidate_code_range(Z, S, E) 101 #define z80_invalidate_code_range(Z, S, E)
100 #define z80_handle_code_write(A, Z) 102 #define z80_handle_code_write(A, Z)
101 103