Skip to content

Commit

Permalink
Change instances of PicoDriveDS to PicoDriveTWL
Browse files Browse the repository at this point in the history
  • Loading branch information
RocketRobz committed Apr 14, 2020
1 parent 4979845 commit 72bce25
Show file tree
Hide file tree
Showing 5 changed files with 472 additions and 7 deletions.
11 changes: 6 additions & 5 deletions Makefile
Expand Up @@ -9,8 +9,8 @@ endif

include $(DEVKITARM)/ds_rules

export VERSION_MAJOR := 1
export VERSION_MINOR := 1
export VERSION_MAJOR := 2
export VERSION_MINOR := 0
export VERSION_PATCH := 0


Expand All @@ -23,7 +23,7 @@ VERSION := $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_PATCH)
# DATA is a list of directories containing binary files embedded using bin2o
# GRAPHICS is a list of directories containing image files to be converted with grit
#---------------------------------------------------------------------------------
TARGET := picodriveds
TARGET := PicoDriveTWL
BUILD := build
SOURCES := source
DATA := data gfx_bin
Expand Down Expand Up @@ -131,8 +131,9 @@ dist: all
@tar -cvjf $(TARGET)-$(VERSION).tar.bz2 hbmenu testfiles README.html COPYING hbmenu -X exclude.lst

$(TARGET).nds: $(TARGET).arm7 $(TARGET).arm9
ndstool -u 00030004 -g EPDA -c $(TARGET).nds -7 $(TARGET).arm7.elf -9 $(TARGET).arm9.elf \
-b genesis-32x32.bmp "PicoDriveDS;Version $(VERSION);by Ryan FB"
ndstool -u 00030004 -g EPDA 00 "PICODRIVE" -c $(TARGET).nds -7 $(TARGET).arm7.elf -9 $(TARGET).arm9.elf \
-b genesis-32x32.bmp "PicoDrive TWL;Version $(VERSION);Ryan FB, RocketRobz"
python27 fix_ndsheader.py $(CURDIR)/$(TARGET).nds

$(TARGET).arm7: arm7/$(TARGET).elf
cp arm7/$(TARGET).elf $(TARGET).arm7.elf
Expand Down
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -6,3 +6,4 @@ SEGA Genesis emulator for the Nintendo DS(i)
* RocketRobz: New features
* Evie11: Fixes to make it build in a modern dev environment
* NightScript: Creating this repo
* devkitPro: Use of devkitArm and libnds, and file browsing code from nds-hb-menu
2 changes: 1 addition & 1 deletion arm7/Makefile
Expand Up @@ -17,7 +17,7 @@ include $(DEVKITARM)/ds_rules
# SOURCES is a list of directories containing source code
# INCLUDES is a list of directories containing extra header files
#---------------------------------------------------------------------------------
TARGET := picodriveds
TARGET := PicoDriveTWL
BUILD := build
SOURCES := source
INCLUDES := include build
Expand Down
2 changes: 1 addition & 1 deletion arm9/Makefile
Expand Up @@ -17,7 +17,7 @@ include $(DEVKITARM)/ds_rules
# GRAPHICS is a list of directories containing image files to be converted with grit
# MAXMOD_SOUNDBANK contains a directory of music and sound effect files
#---------------------------------------------------------------------------------
TARGET := picodriveds
TARGET := PicoDriveTWL
BUILD := build
SOURCES := source source/cyclone source/pico/sound source/pico
INCLUDES := include source
Expand Down

0 comments on commit 72bce25

Please sign in to comment.