-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[What's New 1.0.0 - September 16, 2008]
* Now compiles with devkitpro r15 * One makefile to make all versions * Complete rewrite based on code from SNES9x GX * Now has a menu! ROM selector, preferences, controller mapping, etc * Wiimote, Nunchuk, and Classic controller support * Button mapping for all controller types * Full support for SD and USB * Load/save preference selector. ROMs, saves, and preferences are saved/loaded according to these * 'Auto' settings for save/load - attempts to automatically determine your load/save device(s) - SD, USB * Preferences are loaded and saved in XML format. You can open VBAGX.xml edit all settings, including some not available within the program
- Loading branch information
dborth
committed
Oct 16, 2008
1 parent
2f2a1fd
commit ae51469
Showing
138 changed files
with
37,089 additions
and
52,508 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,23 +15,22 @@ include $(DEVKITPPC)/gamecube_rules | |
# SOURCES is a list of directories containing source code | ||
# INCLUDES is a list of directories containing extra header files | ||
#--------------------------------------------------------------------------------- | ||
TARGET := vbagx_gc | ||
TARGET := vba172_gc | ||
TARGETDIR := executables | ||
BUILD := build_gc | ||
SOURCES := source/vba source/vba/agb source/vba/dmg source/ngc source/sz | ||
INCLUDES := source/vba source/ngc | ||
SOURCES := source/vba source/vba/gb source/ngc | ||
INCLUDES := source/vba source/vba/gb source/ngc | ||
|
||
#--------------------------------------------------------------------------------- | ||
# options for code generation | ||
#--------------------------------------------------------------------------------- | ||
|
||
CFLAGS = -g -O3 -Wall $(MACHDEP) $(INCLUDE) \ | ||
-DNGC -DUSE_VM -DWORDS_BIGENDIAN \ | ||
-DC_CORE -D__ppc__ -D__POWERPC__ -DFINAL_VERSION \ | ||
-DSDL -DNO_PNG -DHAVE_ZUTIL_H \ | ||
-D_SZ_ONE_DIRECTORY -D_LZMA_IN_CB -D_LZMA_OUT_READ | ||
CXXFLAGS = $(CFLAGS) | ||
LDFLAGS = -g $(MACHDEP) -Wl,-Map,$(notdir $@).map | ||
CFLAGS = -g -Os -Wall $(MACHDEP) $(INCLUDE) \ | ||
-DNGC -DWORDS_BIGENDIAN -DPACKAGE=\"VisualBoyAdvance\" \ | ||
-DVERSION=\"1.7.2\" -DC_CORE \ | ||
-DCHANFFS -DSDL -DNO_DEFLATE | ||
CXXFLAGS = -save-temps -Xassembler [email protected] $(CFLAGS) | ||
LDFLAGS = -g $(MACHDEP) -Wl,-Map,$(notdir $@).map -Wl,--cref | ||
|
||
#--------------------------------------------------------------------------------- | ||
# any extra libraries we wish to link with | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,22 +15,21 @@ include $(DEVKITPPC)/wii_rules | |
# SOURCES is a list of directories containing source code | ||
# INCLUDES is a list of directories containing extra header files | ||
#--------------------------------------------------------------------------------- | ||
TARGET := vbagx_wii | ||
TARGET := vba172_wii | ||
TARGETDIR := executables | ||
BUILD := build_wii | ||
SOURCES := source/vba source/vba/agb source/vba/dmg source/ngc source/sz | ||
INCLUDES := source/vba source/ngc | ||
SOURCES := source/vba source/vba/gb source/ngc | ||
INCLUDES := source/vba source/vba/gb source/ngc | ||
|
||
#--------------------------------------------------------------------------------- | ||
# options for code generation | ||
#--------------------------------------------------------------------------------- | ||
|
||
CFLAGS = -g -O3 -Wall $(MACHDEP) $(INCLUDE) \ | ||
-DNGC -DWII_DVD -DWORDS_BIGENDIAN -DVIDEO_THREADING \ | ||
-DC_CORE -D__ppc__ -D__POWERPC__ -DFINAL_VERSION \ | ||
-DSDL -DNO_PNG -DHAVE_ZUTIL_H \ | ||
-D_SZ_ONE_DIRECTORY -D_LZMA_IN_CB -D_LZMA_OUT_READ | ||
CXXFLAGS = $(CFLAGS) | ||
CFLAGS = -g -Os -Wall $(MACHDEP) $(INCLUDE) \ | ||
-DNGC -DWORDS_BIGENDIAN -DPACKAGE=\"VisualBoyAdvance\" \ | ||
-DVERSION=\"1.7.2\" -DC_CORE \ | ||
-DCHANFFS -DSDL -DNO_DEFLATE | ||
CXXFLAGS = -save-temps -Xassembler [email protected] $(CFLAGS) | ||
LDFLAGS = -g $(MACHDEP) -Wl,-Map,$(notdir $@).map -Wl,--cref | ||
|
||
#--------------------------------------------------------------------------------- | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.