-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added (L)ME support, error trapping, new sounds.
- Loading branch information
Showing
13 changed files
with
322 additions
and
136 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
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
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
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
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
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
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,29 @@ | ||
TARGET = UMD_Region_Changer_ME_fix | ||
CFLAGS = -Wall -O2 -G0 | ||
ifdef DEBUG | ||
CFLAGS += -DDEBUG=$(DEBUG) | ||
endif | ||
|
||
LDFLAGS += -mno-crt0 -nostartfiles | ||
CXXFLAGS = $(CFLAGS) -fno-execeptions -fno-rtti | ||
ASFLAGS = $(CFLAGS) | ||
|
||
PSP_FW_VERSION = 660 | ||
BUILD_PRX = 1 | ||
|
||
PRX_EXPORTS = exports.exp | ||
|
||
OBJS = main.o | ||
|
||
USE_KERNEL_LIBC=1 | ||
USE_KERNEL_LIBS=1 | ||
|
||
|
||
INCDIR = $(UMDREGIONROOT)/common/include ./include | ||
LIBDIR=$(UMDREGIONROOT)/libs | ||
|
||
LIBS = -lc -lcolordebugger -lpspsystemctrl_kernel -lpspkubridge | ||
|
||
|
||
PSPSDK=$(shell psp-config --pspsdk-path) | ||
include $(PSPSDK)/lib/build_prx.mak |
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,4 @@ | ||
USE ONLY FOR (L)ME | ||
|
||
|
||
!!!!!!!!!! DO NOT USE ON PRO !!!!!!!!!!! |
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,10 @@ | ||
# Define the exports for the prx | ||
PSP_BEGIN_EXPORTS | ||
|
||
PSP_EXPORT_START(syslib, 0, 0x8000) | ||
PSP_EXPORT_FUNC_HASH(module_start) | ||
PSP_EXPORT_FUNC_HASH(module_stop) | ||
PSP_EXPORT_VAR_HASH(module_info) | ||
PSP_EXPORT_END | ||
|
||
PSP_END_EXPORTS |
Oops, something went wrong.