Search
lxdream.org :: lxdream/src/dreamcast.h
lxdream 0.9.1
released Jun 29
Download Now
filename src/dreamcast.h
changeset 26:ad258e3daaa5
prev23:1ec3acd0594d
next30:89b30313d757
author nkeynes
date Sun Dec 25 04:54:40 2005 +0000 (18 years ago)
permissions -rw-r--r--
last change Set disasm PC on startup
view annotate diff log raw
     1 /**
     2  * $Id: dreamcast.h,v 1.7 2005-12-24 08:02:14 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 1000 /* microseconds */
    34 void dreamcast_init(void);
    35 void dreamcast_reset(void);
    36 void dreamcast_run(void);
    37 void dreamcast_stop(void);
    39 int dreamcast_save_state( const gchar *filename );
    40 int dreamcast_load_state( const gchar *filename );
    42 #ifdef __cplusplus
    43 }
    44 #endif
    46 #endif /* !dreamcast_H */
.