Mercurial > repos > blastem
diff 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 |
line wrap: on
line diff
--- a/m68k_util.c Mon Apr 29 22:57:49 2024 -0700 +++ b/m68k_util.c Tue Apr 30 00:02:14 2024 -0700 @@ -87,3 +87,13 @@ printf("a%d: %X\n", i, context->aregs[i]); } } + +void m68k_serialize(m68k_context *context, uint32_t pc, serialize_buffer *buf) +{ + //TODO: implement me +} + +void m68k_deserialize(deserialize_buffer *buf, void *vcontext) +{ + //TODO: implement me +}