diff m68k_core.h @ 1931:374a5ae694e8 mame_interp

Merge from default
author Michael Pavone <pavone@retrodev.com>
date Sat, 18 Apr 2020 11:42:53 -0700
parents 75172d440900
children 638eb2d25696
line wrap: on
line diff
--- a/m68k_core.h	Thu Apr 18 22:06:47 2019 -0700
+++ b/m68k_core.h	Sat Apr 18 11:42:53 2020 -0700
@@ -36,13 +36,13 @@
 
 typedef struct {
 	cpu_options     gen;
-#ifdef USE_NATIVE
+#ifndef NEW_CORE
 	int8_t          dregs[8];
 	int8_t          aregs[8];
 	int8_t			flag_regs[5];
 #endif
 	FILE            *address_log;
-#ifdef USE_NATIVE
+#ifndef NEW_CORE
 	code_ptr        read_16;
 	code_ptr        write_16;
 	code_ptr        read_8;
@@ -119,7 +119,7 @@
 uint16_t m68k_get_ir(m68k_context *context);
 void m68k_print_regs(m68k_context * context);
 void m68k_invalidate_code_range(m68k_context *context, uint32_t start, uint32_t end);
-#ifdef USE_NATIVE
+#ifndef NEW_CORE
 m68k_context * m68k_handle_code_write(uint32_t address, m68k_context * context);
 #else
 #define m68k_handle_code_write(A, M)