[Atsoft-commit] CVS: dcgen ChangeLog,1.6,1.7 Makefile.prefab,1.2,1.3 config.h,1.2,1.3
Brought to you by:
atani
|
From: Mike D. <at...@us...> - 2002-02-13 07:57:28
|
Update of /cvsroot/atsoft/dcgen
In directory usw-pr-cvs1:/tmp/cvs-serv21015
Modified Files:
ChangeLog Makefile.prefab config.h
Log Message:
1) Completed the pvr_* migration.
2) Cleaned up the cpu68k to remove about 11kb of "dead" code
3) See ChangeLog for more details.
Index: ChangeLog
===================================================================
RCS file: /cvsroot/atsoft/dcgen/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** ChangeLog 12 Feb 2002 05:56:20 -0000 1.6
--- ChangeLog 13 Feb 2002 07:57:25 -0000 1.7
***************
*** 1,2 ****
--- 1,17 ----
+ [2002-02-12] -- Atani
+ -- Added new define in makefile to disable the "START TO EXIT GUI" key.
+ when building a fresh build (or delete gui/romlist.o) do:
+ gmake release RELEASE_BUILD=1
+ and the "START" button will be disabled.
+ -- Completed the migration to the new pvr_* API.
+ -- Cleanedup the cpu68k/gen68k.c generated code to compile without
+ warnings and optimize out useless calculations when possible.
+ Now there are ZERO warnings in the cpu68k-*.c modules.
+ -- Removed the local copy of the sndstream.c as the one in KOS is now
+ better than the local copy, doubling that it wouldnt compile anymore.
+ -- Cleaned up the config.h to remove options that do not apply to the
+ DREAMCAST port.
+ -- In the "RELEASE_BUILD" mode all logging features are now disabled.
+
[2002-02-11] -- Atani
-- Updated a few more things for the new pvr_* API.
Index: Makefile.prefab
===================================================================
RCS file: /cvsroot/atsoft/dcgen/Makefile.prefab,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Makefile.prefab 10 Feb 2002 22:41:06 -0000 1.2
--- Makefile.prefab 13 Feb 2002 07:57:25 -0000 1.3
***************
*** 32,35 ****
--- 32,39 ----
KOS_LOCAL_CFLAGS = -I$(DCGEN_BASE)/hdr -I$(DCGEN_BASE)/mz80 -I$(DCGEN_BASE)/cpu68k -I$(DCGEN_BASE) -I$(DCGEN_BASE)/ym2612 -I$(DCGEN_BASE)/sn76496 -DDREAMCAST=1
+ ifdef RELEASE_BUILD
+ KOS_LOCAL_CFLAGS += -DRELEASE_BUILD=1 -DNOLOGGING=1
+ endif
+
include $(KOS_BASE)/Makefile.rules
Index: config.h
===================================================================
RCS file: /cvsroot/atsoft/dcgen/config.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** config.h 23 Jan 2002 08:08:27 -0000 1.2
--- config.h 13 Feb 2002 07:57:25 -0000 1.3
***************
*** 1,24 ****
- /* config.h. Generated automatically by configure. */
- /* config.h.in. Generated automatically from configure.in by autoheader. */
-
- /* Define to empty if the keyword does not work. */
- /* #undef const */
-
- /* Define as __inline if that's what the C compiler calls it. */
- /* #undef inline */
-
- /* Define if you need to in order for stat and other things to work. */
- /* #undef _POSIX_SOURCE */
-
- /* Define as the return type of signal handlers (int or void). */
- #define RETSIGTYPE void
-
- /* Define if you have the ANSI C header files. */
- #define STDC_HEADERS 1
-
- /* Define if your processor stores words with the most significant
- byte first (like Motorola and SPARC, unlike Intel and VAX). */
- //#define WORDS_BIGENDIAN 1
-
/* The number of bytes in a unsigned char. */
#define SIZEOF_UNSIGNED_CHAR 1
--- 1,2 ----
***************
*** 39,62 ****
#define HAVE_SNPRINTF 1
- /* Define if you have the <tcl8.0.h> header file. */
- /* #undef HAVE_TCL8_0_H */
-
- /* Define if you have the <tk8.0.h> header file. */
- /* #undef HAVE_TK8_0_H */
-
/* Name of package */
#define PACKAGE "dcgenerator"
/* Version number of package */
! #define VERSION "0.34"
!
! /* Allegro version */
! //#undef ALLEGRO
#define DREAMCAST 1
- /* Define to use RAZE z80 emulation */
- /* #undef RAZE */
-
/* Define to use the portable C mz80 z80 emulation */
#define CMZ80 1
--- 17,28 ----
#define HAVE_SNPRINTF 1
/* Name of package */
#define PACKAGE "dcgenerator"
/* Version number of package */
! #define VERSION "0.34b"
#define DREAMCAST 1
/* Define to use the portable C mz80 z80 emulation */
#define CMZ80 1
***************
*** 65,77 ****
#define DIRECTRAM 1
- /* Define if you have an x86 processor */
- /* #undef PROCESSOR_INTEL */
-
- /* Define if you have a sparc processor */
- /* #undef PROCESSOR_SPARC */
-
- /* Define if you have an ARM processor */
- /* #undef PROCESSOR_ARM */
-
/* Define if you have an SH4 processor */
#define PROCESSOR_SH4 1
--- 31,34 ----
***************
*** 79,83 ****
/* Undefine if your processor can read unaligned 32-bit values */
#define ALIGNLONGS ALIGNLONGS
-
- /* Define to turn off all logging */
- //#define NOLOGGING 1
--- 36,37 ----
|