From a75eb24bfbbf0dd3492c8414cfaafa0569a1539a Mon Sep 17 00:00:00 2001 From: Mike Pavone Date: Fri, 26 Jul 2013 19:55:04 -0700 Subject: Added support for saving savestates. Added gst savestate format test harness --- gst.h | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 gst.h (limited to 'gst.h') diff --git a/gst.h b/gst.h new file mode 100644 index 0000000..ff5d98c --- /dev/null +++ b/gst.h @@ -0,0 +1,8 @@ +#ifndef GST_H_ +#define GST_H_ +#include "blastem.h" + +uint8_t save_gst(genesis_context * gen, char *fname, uint32_t m68k_pc); +uint32_t load_gst(genesis_context * gen, char * fname); + +#endif //GST_H_ -- cgit v1.2.3 From 2c302a78d201d9b594774cec505d14c22e03662c Mon Sep 17 00:00:00 2001 From: Mike Pavone Date: Tue, 10 Sep 2013 23:31:08 -0700 Subject: Added copyright notice to source files and added GPL license text in COPYING --- gst.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'gst.h') diff --git a/gst.h b/gst.h index ff5d98c..67bec11 100644 --- a/gst.h +++ b/gst.h @@ -1,3 +1,8 @@ +/* + Copyright 2013 Michael Pavone + This file is part of BlastEm. + BlastEm is free software distributed under the terms of the GNU General Public License version 3 or greater. See COPYING for full license text. +*/ #ifndef GST_H_ #define GST_H_ #include "blastem.h" -- cgit v1.2.3