Search
lxdream.org :: lxdream/src/dreamcast.h
lxdream 0.9.1
released Jun 29
Download Now
filename src/dreamcast.h
changeset 467:0120dc87e05d
prev461:63d4de8dcec6
next477:9a373f2ff009
author nkeynes
date Sat Oct 27 05:48:22 2007 +0000 (16 years ago)
permissions -rw-r--r--
last change Bump the save state version number (incompatible changes)
view annotate diff log raw
     1 /**
     2  * $Id: dreamcast.h,v 1.20 2007-10-27 05:48:22 nkeynes Exp $
     3  *
     4  * Public interface for dreamcast.c -
     5  * Central switchboard for the system. This pulls all the individual modules
     6  * together into some kind of coherent structure. This is also where you'd
     7  * add Naomi support, if I ever get a board to play with...
     8  *
     9  * Copyright (c) 2005 Nathan Keynes.
    10  *
    11  * This program is free software; you can redistribute it and/or modify
    12  * it under the terms of the GNU General Public License as published by
    13  * the Free Software Foundation; either version 2 of the License, or
    14  * (at your option) any later version.
    15  *
    16  * This program is distributed in the hope that it will be useful,
    17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    19  * GNU General Public License for more details.
    20  */
    22 #ifndef dreamcast_H
    23 #define dreamcast_H 1
    25 #include <stdio.h>
    26 #include <glib/gtypes.h>
    28 #ifdef __cplusplus
    29 extern "C" {
    30 #endif
    32 #define DEFAULT_TIMESLICE_LENGTH 1000000 /* nanoseconds */
    34 #define MB *1024*1024
    35 #define KB *1024
    37 #define XLAT_NEW_CACHE_SIZE 32 MB
    38 #define XLAT_TEMP_CACHE_SIZE 2 MB
    39 #define XLAT_OLD_CACHE_SIZE 8 MB
    41 void dreamcast_configure(void);
    42 void dreamcast_configure_aica_only(void);
    43 void dreamcast_init(void);
    44 void dreamcast_reset(void);
    45 void dreamcast_run(void);
    46 void dreamcast_run_for( unsigned int seconds, unsigned int nanosecs );
    47 void dreamcast_stop(void);
    48 void dreamcast_shutdown(void);
    49 void dreamcast_config_changed(void);
    50 gboolean dreamcast_is_running(void);
    52 #define DREAMCAST_SAVE_MAGIC "%!-lxDream!Save\0"
    53 #define DREAMCAST_SAVE_VERSION 0x00010001
    55 int dreamcast_save_state( const gchar *filename );
    56 int dreamcast_load_state( const gchar *filename );
    58 #define SCENE_SAVE_MAGIC "%!-lxDream!Scene"
    59 #define SCENE_SAVE_VERSION 0x00010000
    61 #ifdef __cplusplus
    62 }
    63 #endif
    65 #endif /* !dreamcast_H */
.