Search
lxdream.org :: lxdream/src/dreamcast.h :: diff
lxdream 0.9.1
released Jun 29
Download Now
filename src/dreamcast.h
changeset 30:89b30313d757
prev26:ad258e3daaa5
next144:7f0714e89aaa
author nkeynes
date Tue Mar 14 11:44:29 2006 +0000 (18 years ago)
permissions -rw-r--r--
last change Add elf loader suppt
file annotate diff log raw
1.1 --- a/src/dreamcast.h Sat Dec 24 08:02:18 2005 +0000
1.2 +++ b/src/dreamcast.h Tue Mar 14 11:44:29 2006 +0000
1.3 @@ -1,5 +1,5 @@
1.4 /**
1.5 - * $Id: dreamcast.h,v 1.7 2005-12-24 08:02:14 nkeynes Exp $
1.6 + * $Id: dreamcast.h,v 1.8 2005-12-25 05:56:55 nkeynes Exp $
1.7 *
1.8 * Public interface for dreamcast.c -
1.9 * Central switchboard for the system. This pulls all the individual modules
1.10 @@ -29,13 +29,16 @@
1.11 extern "C" {
1.12 #endif
1.13
1.14 -#define DEFAULT_TIMESLICE_LENGTH 1000 /* microseconds */
1.15 +#define DEFAULT_TIMESLICE_LENGTH 1000000 /* nanoseconds */
1.16
1.17 void dreamcast_init(void);
1.18 void dreamcast_reset(void);
1.19 void dreamcast_run(void);
1.20 void dreamcast_stop(void);
1.21
1.22 +void dreamcast_load_config( const gchar *filename );
1.23 +void dreamcast_save_config( const gchar *filename );
1.24 +
1.25 int dreamcast_save_state( const gchar *filename );
1.26 int dreamcast_load_state( const gchar *filename );
1.27
.