diff m68k_core.h @ 2499:d74d3998482c

Make some progress on compiling full emulator with new 68K core
author Michael Pavone <pavone@retrodev.com>
date Tue, 30 Apr 2024 00:02:14 -0700
parents bf4f1a8d1d48
children 7e86ec94c899
line wrap: on
line diff
--- a/m68k_core.h	Mon Apr 29 22:57:49 2024 -0700
+++ b/m68k_core.h	Tue Apr 30 00:02:14 2024 -0700
@@ -98,7 +98,7 @@
 	uint32_t        dregs[8];
 	uint32_t        aregs[9];
 	uint32_t		target_cycle; //cycle at which the next synchronization or interrupt occurs
-	uint32_t		current_cycle;
+	uint32_t		cycles;
 	uint32_t        sync_cycle;
 	uint32_t        int_cycle;
 	uint32_t        int_num;
@@ -108,7 +108,7 @@
 	uint16_t        *mem_pointers[NUM_MEM_AREAS];
 	code_ptr        resume_pc;
 	code_ptr        reset_handler;
-	m68k_options    *options;
+	m68k_options    *opts;
 	void            *system;
 	void            *host_sp_entry;
 	void            *stack_storage[M68K_STACK_STORAGE];