comparison m68k_util.c @ 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 414eb8c34198
children d44fe974fb85
comparison
equal deleted inserted replaced
2498:dffda054d218 2499:d74d3998482c
85 } 85 }
86 for (int i = 0; i < 8; i++) { 86 for (int i = 0; i < 8; i++) {
87 printf("a%d: %X\n", i, context->aregs[i]); 87 printf("a%d: %X\n", i, context->aregs[i]);
88 } 88 }
89 } 89 }
90
91 void m68k_serialize(m68k_context *context, uint32_t pc, serialize_buffer *buf)
92 {
93 //TODO: implement me
94 }
95
96 void m68k_deserialize(deserialize_buffer *buf, void *vcontext)
97 {
98 //TODO: implement me
99 }