split main.cc to main.cc + config.cc

This commit is contained in:
Stanislav Shwartsman 2004-06-04 22:06:55 +00:00
parent 4ee34fd354
commit 47fd2820ae
4 changed files with 3634 additions and 3580 deletions

View File

@ -139,6 +139,7 @@ BX_INCDIRS = -I. -I$(srcdir)/. -I@INSTRUMENT_DIR@ -I$(srcdir)/@INSTRUMENT_DIR@
NONINLINE_OBJS = \
logio.o \
main.o \
config.o \
load32bitOShack.o \
state_file.o \
pc_system.o \
@ -148,6 +149,7 @@ NONINLINE_OBJS = \
EXTERN_ENVIRONMENT_OBJS = \
main.o \
config.o \
load32bitOShack.o \
state_file.o \
pc_system.o
@ -243,7 +245,7 @@ $(BX_OBJS): $(BX_INCLUDES)
bxversion.h:
$(RM) -f bxversion.h
echo '/////////////////////////////////////////////////////////////////////////' > bxversion.h
echo '// $$Id: Makefile.in,v 1.163 2004-02-18 18:24:18 vruppert Exp $$' >> bxversion.h
echo '// $$Id: Makefile.in,v 1.164 2004-06-04 22:06:54 sshwarts Exp $$' >> bxversion.h
echo '/////////////////////////////////////////////////////////////////////////' >> bxversion.h
echo '// This file is generated by "make bxversion.h"' >> bxversion.h
echo "#define VER_STRING \"$(VER_STRING)\"" >> bxversion.h

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: bochs.h,v 1.137 2004-02-22 18:51:36 vruppert Exp $
// $Id: bochs.h,v 1.138 2004-06-04 22:06:54 sshwarts Exp $
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2002 MandrakeSoft S.A.
@ -686,6 +686,8 @@ typedef struct BOCHSAPI {
BOCHSAPI extern bx_options_t bx_options;
void bx_init_options();
void bx_center_print (FILE *file, char *line, int maxwidth);
#if BX_PROVIDE_CPU_MEMORY==1

3627
bochs/config.cc Executable file

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff