Search
lxdream.org :: lxdream/src/main.c :: diff
lxdream 0.9.1
released Jun 29
Download Now
filename src/main.c
changeset 105:1faa0745f200
prev94:8d80d9c7cc7d
next106:9048bac046c3
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/main.c Sun Feb 05 04:05:27 2006 +0000
1.2 +++ b/src/main.c Tue Mar 14 11:44:29 2006 +0000
1.3 @@ -1,5 +1,5 @@
1.4 /**
1.5 - * $Id: main.c,v 1.13 2006-02-05 04:05:27 nkeynes Exp $
1.6 + * $Id: main.c,v 1.14 2006-03-14 11:44:29 nkeynes Exp $
1.7 *
1.8 * Main program, initializes dreamcast and gui, then passes control off to
1.9 * the gtk main loop (currently).
1.10 @@ -27,7 +27,7 @@
1.11 #include <gnome.h>
1.12 #include "gui/gui.h"
1.13 #include "dream.h"
1.14 -#include "bios.h"
1.15 +#include "syscall.h"
1.16 #include "dreamcast.h"
1.17
1.18 #define S3M_PLAYER "s3mplay.bin"
1.19 @@ -81,6 +81,7 @@
1.20 } else {
1.21 dreamcast_init();
1.22 }
1.23 +
1.24 } else {
1.25 dreamcast_configure_aica_only();
1.26 mem_load_block( aica_program, 0x00800000, 2048*1024 );
1.27 @@ -96,6 +97,7 @@
1.28
1.29 if( without_bios ) {
1.30 bios_install();
1.31 + dcload_install();
1.32 }
1.33 INFO( "DreamOn! ready..." );
1.34 if( optind < argc ) {
.