-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 5fbe504
Showing
8 changed files
with
937 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,191 @@ | ||
#--------------------------------------------------------------------------------- | ||
.SUFFIXES: | ||
#--------------------------------------------------------------------------------- | ||
|
||
ifeq ($(strip $(DEVKITARM)),) | ||
$(error "Please set DEVKITARM in your environment. export DEVKITARM=<path to>devkitARM") | ||
endif | ||
|
||
TOPDIR ?= $(CURDIR) | ||
include $(DEVKITARM)/3ds_rules | ||
|
||
#--------------------------------------------------------------------------------- | ||
# TARGET is the name of the output | ||
# BUILD is the directory where object files & intermediate files will be placed | ||
# SOURCES is a list of directories containing source code | ||
# DATA is a list of directories containing data files | ||
# INCLUDES is a list of directories containing header files | ||
# | ||
# NO_SMDH: if set to anything, no SMDH file is generated. | ||
# APP_TITLE is the name of the app stored in the SMDH file (Optional) | ||
# APP_DESCRIPTION is the description of the app stored in the SMDH file (Optional) | ||
# APP_AUTHOR is the author of the app stored in the SMDH file (Optional) | ||
# ICON is the filename of the icon (.png), relative to the project folder. | ||
# If not set, it attempts to use one of the following (in this order): | ||
# - <Project name>.png | ||
# - icon.png | ||
# - <libctru folder>/default_icon.png | ||
#--------------------------------------------------------------------------------- | ||
TARGET := $(notdir $(CURDIR)) | ||
BUILD := build | ||
SOURCES := source | ||
DATA := data | ||
INCLUDES := include | ||
|
||
VERSION := v1.1 | ||
|
||
APP_TITLE := hblauncher_loader $(VERSION) | ||
APP_DESCRIPTION := This boots the hblauncher-payload. | ||
APP_AUTHOR := yellows8 | ||
|
||
#--------------------------------------------------------------------------------- | ||
# options for code generation | ||
#--------------------------------------------------------------------------------- | ||
ARCH := -march=armv6k -mtune=mpcore -mfloat-abi=hard | ||
|
||
CFLAGS := -g -Wall -O2 -mword-relocations \ | ||
-fomit-frame-pointer -ffast-math \ | ||
$(ARCH) | ||
|
||
CFLAGS += $(INCLUDE) -DARM11 -D_3DS -DVERSION=\"$(VERSION)\" | ||
|
||
CXXFLAGS := $(CFLAGS) -fno-rtti -fno-exceptions -std=gnu++11 | ||
|
||
ASFLAGS := -g $(ARCH) | ||
LDFLAGS = -nostartfiles -T$(DEVKITARM)/arm-none-eabi/lib/3dsx.ld -g $(ARCH) -Wl,-Map,$(notdir $*.map) | ||
|
||
LIBS := -lctru -lm | ||
|
||
#--------------------------------------------------------------------------------- | ||
# list of directories containing libraries, this must be the top level containing | ||
# include and lib | ||
#--------------------------------------------------------------------------------- | ||
LIBDIRS := $(CTRULIB) | ||
|
||
|
||
#--------------------------------------------------------------------------------- | ||
# no real need to edit anything past this point unless you need to add additional | ||
# rules for different file extensions | ||
#--------------------------------------------------------------------------------- | ||
ifneq ($(BUILD),$(notdir $(CURDIR))) | ||
#--------------------------------------------------------------------------------- | ||
|
||
export OUTPUT := $(CURDIR)/$(TARGET) | ||
export TOPDIR := $(CURDIR) | ||
|
||
export VPATH := $(foreach dir,$(SOURCES),$(CURDIR)/$(dir)) \ | ||
$(foreach dir,$(DATA),$(CURDIR)/$(dir)) | ||
|
||
export DEPSDIR := $(CURDIR)/$(BUILD) | ||
|
||
CFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.c))) | ||
CPPFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.cpp))) | ||
SFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.s))) | ||
BINFILES := $(foreach dir,$(DATA),$(notdir $(wildcard $(dir)/*.*))) | ||
|
||
#--------------------------------------------------------------------------------- | ||
# use CXX for linking C++ projects, CC for standard C | ||
#--------------------------------------------------------------------------------- | ||
ifeq ($(strip $(CPPFILES)),) | ||
#--------------------------------------------------------------------------------- | ||
export LD := $(CC) | ||
#--------------------------------------------------------------------------------- | ||
else | ||
#--------------------------------------------------------------------------------- | ||
export LD := $(CXX) | ||
#--------------------------------------------------------------------------------- | ||
endif | ||
#--------------------------------------------------------------------------------- | ||
|
||
export OFILES := $(addsuffix .o,$(BINFILES)) \ | ||
$(CPPFILES:.cpp=.o) $(CFILES:.c=.o) $(SFILES:.s=.o) | ||
|
||
export INCLUDE := $(foreach dir,$(INCLUDES),-I$(CURDIR)/$(dir)) \ | ||
$(foreach dir,$(LIBDIRS),-I$(dir)/include) \ | ||
-I$(CURDIR)/$(BUILD) | ||
|
||
export LIBPATHS := $(foreach dir,$(LIBDIRS),-L$(dir)/lib) | ||
|
||
ifeq ($(strip $(ICON)),) | ||
icons := $(wildcard *.png) | ||
ifneq (,$(findstring $(TARGET).png,$(icons))) | ||
export APP_ICON := $(TOPDIR)/$(TARGET).png | ||
else | ||
ifneq (,$(findstring icon.png,$(icons))) | ||
export APP_ICON := $(TOPDIR)/icon.png | ||
endif | ||
endif | ||
else | ||
export APP_ICON := $(TOPDIR)/$(ICON) | ||
endif | ||
|
||
ifeq ($(strip $(NO_SMDH)),) | ||
export _3DSXFLAGS += --smdh=$(CURDIR)/$(TARGET).smdh | ||
endif | ||
|
||
.PHONY: $(BUILD) clean all | ||
|
||
#--------------------------------------------------------------------------------- | ||
all: $(BUILD) | ||
|
||
$(BUILD): | ||
@[ -d $@ ] || mkdir -p $@ | ||
@$(MAKE) --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile | ||
|
||
#--------------------------------------------------------------------------------- | ||
clean: | ||
@echo clean ... | ||
@rm -fr $(BUILD) $(TARGET).3dsx $(OUTPUT).smdh $(TARGET).elf $(OUTPUT).cia Resources/hblauncher_loader.icn Resources/hblauncher_loader.bnr | ||
|
||
|
||
#--------------------------------------------------------------------------------- | ||
else | ||
|
||
DEPENDS := $(OFILES:.o=.d) | ||
|
||
#--------------------------------------------------------------------------------- | ||
# main targets | ||
#--------------------------------------------------------------------------------- | ||
ifeq ($(strip $(NO_SMDH)),) | ||
$(OUTPUT).3dsx : $(OUTPUT).elf $(OUTPUT).smdh $(OUTPUT).cia | ||
else | ||
$(OUTPUT).3dsx : $(OUTPUT).elf | ||
endif | ||
|
||
$(OUTPUT).elf : $(OFILES) | ||
|
||
../Resources/hblauncher_loader.icn : $(APP_ICON) | ||
@bannertool makesmdh -i "$(APP_ICON)" -o "$@" -s "$(APP_TITLE)" -l "$(APP_TITLE)" -p "$(APP_AUTHOR)" | ||
|
||
../Resources/hblauncher_loader.bnr : ../banner.png | ||
@bannertool makebanner -i "$<" -ca ../Resources/hblauncher_loader.cwav -o "$@" | ||
|
||
$(OUTPUT).cia : $(OUTPUT).elf ../Resources/hblauncher_loader.icn ../Resources/hblauncher_loader.bnr | ||
@makerom -f cia -o "$@" -elf $(OUTPUT).elf -rsf ../Resources/hblauncher_loader.rsf -icon ../Resources/hblauncher_loader.icn -banner ../Resources/hblauncher_loader.bnr -exefslogo -ver 1040 | ||
@echo "built ... hblauncher_loader.cia" | ||
|
||
#--------------------------------------------------------------------------------- | ||
# you need a rule like this for each extension you use as binary data | ||
#--------------------------------------------------------------------------------- | ||
%.bin.o : %.bin | ||
#--------------------------------------------------------------------------------- | ||
@echo $(notdir $<) | ||
@$(bin2o) | ||
|
||
# WARNING: This is not the right way to do this! TODO: Do it right! | ||
#--------------------------------------------------------------------------------- | ||
%.vsh.o : %.vsh | ||
#--------------------------------------------------------------------------------- | ||
@echo $(notdir $<) | ||
@python $(AEMSTRO)/aemstro_as.py $< ../$(notdir $<).shbin | ||
@bin2s ../$(notdir $<).shbin | $(PREFIX)as -o $@ | ||
@echo "extern const u8" `(echo $(notdir $<).shbin | sed -e 's/^\([0-9]\)/_\1/' | tr . _)`"_end[];" > `(echo $(notdir $<).shbin | tr . _)`.h | ||
@echo "extern const u8" `(echo $(notdir $<).shbin | sed -e 's/^\([0-9]\)/_\1/' | tr . _)`"[];" >> `(echo $(notdir $<).shbin | tr . _)`.h | ||
@echo "extern const u32" `(echo $(notdir $<).shbin | sed -e 's/^\([0-9]\)/_\1/' | tr . _)`_size";" >> `(echo $(notdir $<).shbin | tr . _)`.h | ||
@rm ../$(notdir $<).shbin | ||
|
||
-include $(DEPENDS) | ||
|
||
#--------------------------------------------------------------------------------------- | ||
endif | ||
#--------------------------------------------------------------------------------------- |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
This is a 3DS homebrew application intended for running under a NCCH(which can be installed via .cia), for booting the *hax payloads. https://smealum.github.io/3ds/ | ||
|
||
This app was mostly finished in October 2015, this was finally released on November 25, 2015, due to the custom logo being finished. | ||
|
||
This will first attempt to load the payload from SD, if that isn't successful it will then automatically download the payload for your system with HTTP. SD payload loading can be skipped if you hold down the X button. If you don't hold down the Y button, this will write the downloaded payload from HTTP to SD, if it actually downloaded it via HTTP. | ||
|
||
The exact filepath used for the SD payload depends on your system. Since this app can handle writing the payload here itself, writing the payload here manually isn't really needed. Example SD filepath with New3DS 10.1.0-27U: "/hblauncherloader_otherapp_payload_NEW-10-1-0-27-USA.bin". The Old3DS filepath for the same system-version and region as that example is the same, except that "OLD" is used instead of "NEW". | ||
|
||
If you want to manually build this, you'll need this: https://github.com/Steveice10/bannertool | ||
|
||
Credits: | ||
* 3DSGuy for originally converting the CWAV used by this app's banner, years ago(which seems to be originally from the Wii HBC banner audio?). | ||
* @Substance12 For the icon/banner(#4). | ||
|
Binary file not shown.
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 |
---|---|---|
@@ -0,0 +1,171 @@ | ||
BasicInfo: | ||
Title : Gateway Launcher | ||
ProductCode : 3DS Chaos | ||
Logo : Homebrew | ||
|
||
RomFs: | ||
# Specifies the root path of the read only file system to include in the ROM. | ||
#RootPath : romfs | ||
|
||
TitleInfo: | ||
Category : Application | ||
UniqueId : 0xd921e | ||
|
||
Option: | ||
UseOnSD : true # true if App is to be installed to SD | ||
FreeProductCode : true # Removes limitations on ProductCode | ||
MediaFootPadding : false # If true CCI files are created with padding | ||
EnableCrypt : false # Enables encryption for NCCH and CIA | ||
EnableCompress : true # Compresses where applicable (currently only exefs:/.code) | ||
|
||
AccessControlInfo: | ||
CoreVersion : 2 | ||
|
||
# Exheader Format Version | ||
DescVersion : 2 | ||
|
||
# Minimum Required Kernel Version (below is for 4.5.0) | ||
ReleaseKernelMajor : "02" | ||
ReleaseKernelMinor : "33" | ||
|
||
# ExtData | ||
UseExtSaveData : false # enables ExtData | ||
#ExtSaveDataId : 0x300 # only set this when the ID is different to the UniqueId | ||
|
||
# FS:USER Archive Access Permissions | ||
# Uncomment as required | ||
FileSystemAccess: | ||
#- CategorySystemApplication | ||
#- CategoryHardwareCheck | ||
#- CategoryFileSystemTool | ||
#- Debug | ||
#- TwlCardBackup | ||
#- TwlNandData | ||
#- Boss | ||
- DirectSdmc | ||
#- Core | ||
#- CtrNandRo | ||
#- CtrNandRw | ||
#- CtrNandRoWrite | ||
#- CategorySystemSettings | ||
#- CardBoard | ||
#- ExportImportIvs | ||
#- DirectSdmcWrite | ||
#- SwitchCleanup | ||
#- SaveDataMove | ||
#- Shop | ||
#- Shell | ||
#- CategoryHomeMenu | ||
|
||
# Process Settings | ||
MemoryType : Application # Application/System/Base | ||
SystemMode : 64MB # 64MB(Default)/96MB/80MB/72MB/32MB | ||
IdealProcessor : 0 | ||
AffinityMask : 1 | ||
Priority : 16 | ||
MaxCpu : 0 # Let system decide | ||
HandleTableSize : 0x200 | ||
DisableDebug : true | ||
EnableForceDebug : false | ||
CanWriteSharedPage : false | ||
CanUsePrivilegedPriority : false | ||
CanUseNonAlphabetAndNumber : false | ||
PermitMainFunctionArgument : false | ||
CanShareDeviceMemory : false | ||
RunnableOnSleep : false | ||
SpecialMemoryArrange : false | ||
|
||
# New3DS Exclusive Process Settings | ||
SystemModeExt : Legacy # Legacy(Default)/124MB/178MB Legacy:Use Old3DS SystemMode | ||
CpuSpeed : 268MHz # 268MHz(Default)/804MHz | ||
EnableL2Cache : false # false(default)/true | ||
CanAccessCore2 : false | ||
|
||
# Virtual Address Mappings | ||
IORegisterMapping: | ||
- 1ff00000-1ff7ffff # DSP memory | ||
MemoryMapping: | ||
- 1f000000-1f5fffff:r # VRAM | ||
|
||
# Accessible SVCs, <Name>:<ID> | ||
SystemCallAccess: | ||
ArbitrateAddress: 34 | ||
Break: 60 | ||
CancelTimer: 28 | ||
ClearEvent: 25 | ||
ClearTimer: 29 | ||
CloseHandle: 35 | ||
ConnectToPort: 45 | ||
ControlMemory: 1 | ||
CreateAddressArbiter: 33 | ||
CreateEvent: 23 | ||
CreateMemoryBlock: 30 | ||
CreateMutex: 19 | ||
CreateSemaphore: 21 | ||
CreateThread: 8 | ||
CreateTimer: 26 | ||
DuplicateHandle: 39 | ||
ExitProcess: 3 | ||
ExitThread: 9 | ||
GetCurrentProcessorNumber: 17 | ||
GetHandleInfo: 41 | ||
GetProcessId: 53 | ||
GetProcessIdOfThread: 54 | ||
GetProcessIdealProcessor: 6 | ||
GetProcessInfo: 43 | ||
GetResourceLimit: 56 | ||
GetResourceLimitCurrentValues: 58 | ||
GetResourceLimitLimitValues: 57 | ||
GetSystemInfo: 42 | ||
GetSystemTick: 40 | ||
GetThreadContext: 59 | ||
GetThreadId: 55 | ||
GetThreadIdealProcessor: 15 | ||
GetThreadInfo: 44 | ||
GetThreadPriority: 11 | ||
MapMemoryBlock: 31 | ||
OutputDebugString: 61 | ||
QueryMemory: 2 | ||
ReleaseMutex: 20 | ||
ReleaseSemaphore: 22 | ||
SendSyncRequest1: 46 | ||
SendSyncRequest2: 47 | ||
SendSyncRequest3: 48 | ||
SendSyncRequest4: 49 | ||
SendSyncRequest: 50 | ||
SetThreadPriority: 12 | ||
SetTimer: 27 | ||
SignalEvent: 24 | ||
SleepThread: 10 | ||
UnmapMemoryBlock: 32 | ||
WaitSynchronization1: 36 | ||
WaitSynchronizationN: 37 | ||
FlushProcessDataCache: 84 | ||
ControlProcessMemory: 112 | ||
|
||
# Service List | ||
# Maximum 34 services (32 if firmware is prior to 9.6.0) | ||
ServiceAccessControl: | ||
- APT:U | ||
- cfg:u | ||
- fs:USER | ||
- gsp::Gpu | ||
- hid:USER | ||
- http:C | ||
|
||
|
||
SystemControlInfo: | ||
SaveDataSize: 0K | ||
RemasterVersion: 0 | ||
StackSize: 0x8000 | ||
|
||
# Modules that run services listed above should be included below | ||
# Maximum 48 dependencies | ||
# If a module is listed that isn't present on the 3DS, the title will get stuck at the logo (3ds waves) | ||
# So act, nfc and qtm are commented for 4.x support. Uncomment if you need these. | ||
# <module name>:<module titleid> | ||
Dependency: | ||
cfg: 0x0004013000001702L | ||
gsp: 0x0004013000001c02L | ||
hid: 0x0004013000001d02L | ||
http: 0x0004013000002902L |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.