Subversion Repositories Shiroi

Rev

Rev 14 | Rev 20 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 14 Rev 18
Line 1... Line 1...
1
/* $Id: shiroi.c 14 2024-08-29 04:38:46Z nishi $ */
1
/* $Id: shiroi.c 18 2024-08-29 06:56:23Z nishi $ */
2
 
2
 
3
#include "io.h"
3
#include "io.h"
4
 
4
 
5
#include "math.h"
5
#include "dri/math.h"
6
#include "sound.h"
6
#include "dri/sound.h"
7
#include "video.h"
7
#include "dri/video.h"
8
#include "text.h"
8
#include "dri/text.h"
9
#include "debug.h"
9
#include "dri/debug.h"
10
 
10
 
11
#include "char.h"
11
#include "char.h"
12
 
12
 
13
void init_cards(void);
13
void init_cards(void);
14
void basic(void);
14
void basic(void);
Line 103... Line 103...
103
#ifdef ONLY_VDP
103
#ifdef ONLY_VDP
104
	if(vdp_addr == -1){
104
	if(vdp_addr == -1){
105
#else
105
#else
106
	if(vdp_addr == -1 && vdg_addr == -1){
106
	if(vdp_addr == -1 && vdg_addr == -1){
107
#endif
107
#endif
108
		int i;
-
 
109
		debug_number(0x0001);
108
		debug_number(0x0001);
110
		while(1);
109
		while(1);
111
	}
110
	}
112
 
111
 
113
	video_init();
112
	video_init();