diff 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
line wrap: on
line diff
--- a/mame_z80/z80.h	Sat Dec 30 18:27:06 2017 -0800
+++ b/mame_z80/z80.h	Sun Dec 31 10:03:25 2017 -0800
@@ -94,6 +94,8 @@
 	const uint8_t *   m_cc_xy;
 	const uint8_t *   m_cc_xycb;
 	const uint8_t *   m_cc_ex;
+	uint8_t           *read_pointers[64/8];
+	uint8_t           *write_pointers[64/8];
 };
 
 #define z80_invalidate_code_range(Z, S, E)