Search
lxdream.org :: lxdream/src/loader.h
lxdream 0.9.1
released Jun 29
Download Now
filename src/loader.h
changeset 736:a02d1475ccfd
prev561:533f6b478071
next1108:305ef2082079
author nkeynes
date Sat Dec 27 02:59:35 2008 +0000 (15 years ago)
branchlxdream-mem
permissions -rw-r--r--
last change Replace fpscr_mask/fpscr flags in xlat_cache_block with a single xlat_sh4_mode,
which tracks the field of the same name in sh4r - actually a little faster this way.
Now depends on SR.MD, FPSCR.PR and FPSCR.SZ (although it doesn't benefit from the SR
flag yet).

Also fixed the failure to check the flags in the common case (code address returned
by previous block) which took away the performance benefits, but oh well.
view annotate diff log raw
     1 /**
     2  * $Id$
     3  *
     4  * Interface declarations for the binary loader routines (loader.c, elf.c)
     5  *
     6  * Copyright (c) 2005 Nathan Keynes.
     7  *
     8  * This program is free software; you can redistribute it and/or modify
     9  * it under the terms of the GNU General Public License as published by
    10  * the Free Software Foundation; either version 2 of the License, or
    11  * (at your option) any later version.
    12  *
    13  * This program is distributed in the hope that it will be useful,
    14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    16  * GNU General Public License for more details.
    17  */
    19 #ifndef lxdream_loader_H
    20 #define lxdream_loader_H 1
    22 #include <stdio.h>
    23 #include <glib/gtypes.h>
    25 #ifdef __cplusplus
    26 extern "C" {
    27 #endif
    29 /** 
    30  * NULL-terminated list of file extension/name pairs,
    31  * supported by the loader 
    32  */
    33 extern char *file_loader_extensions[][2];
    35 /**
    36  * Load the CD bootstrap, aka IP.BIN. Identified by "SEGA SEGAKATANA" at
    37  * start of file. IP.BIN is loaded as-is at 8C008000.
    38  * This is mainly for testing as it's unlikely anyone would want to do this
    39  * for any other reason.
    40  * @return TRUE on success, otherwise FALSE and errno 
    41  */
    42 gboolean file_load_bootstrap( const gchar *filename );
    44 /**
    45  * Load a miscellaneous .bin file, as commonly used in demos. No magic
    46  * applies, file is loaded as is at 8C010000
    47  */
    48 gboolean file_load_binary( const gchar *filename );
    50 /**
    51  * Load a "Self Boot Inducer" .sbi file, also commonly used to package
    52  * demos. (Actually a ZIP file with a predefined structure
    53  */
    54 gboolean file_load_sbi( const gchar *filename );
    56 /**
    57  * Load an ELF executable binary file. Origin is file-dependent.
    58  */
    59 gboolean file_load_elf( const gchar *filename );
    61 /**
    62  * Load any of the above file types, using the appropriate magic to determine
    63  * which is actually applicable
    64  */
    65 gboolean file_load_magic( const gchar *filename );
    67 #ifdef __cplusplus
    68 }
    69 #endif
    71 #endif /* !lxdream_loader_H */
.