Skip to content

Commit

Permalink
v0.91
Browse files Browse the repository at this point in the history
  • Loading branch information
Zarh committed Sep 9, 2019
1 parent 827bec0 commit 9a2746f
Show file tree
Hide file tree
Showing 10 changed files with 817 additions and 732 deletions.
8 changes: 8 additions & 0 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
v0.91
-Add : Support fw 4.85C

v0.90
-Add : Support fw 4.84C and 4.84D

Note : Updated by theheroGAC

v0.89
-Add : Support fw 4.83C

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ include $(PSL1GHT)/ppu_rules
# SOURCES is a list of directories containing source code
# INCLUDES is a list of directories containing extra header files
#---------------------------------------------------------------------------------
VERSION := 0.90
VERSION := 0.91
NAME := IDPSet

TARGET := $(NAME)_v$(VERSION)
Expand Down
Binary file added data/payload_485C.bin
Binary file not shown.
1 change: 1 addition & 0 deletions payload/source/FIRMWARES
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
PAYLOADS :=421C 421D 430C 430D 431C 440C 441C 441D 446C 446D 450C 450D 453C 453D 455C 455D 460C 465C 465D 470C 470D 475C 475D 476C 476D 478C 478D 480C 480D 481C 481D 482C 482D 483C 484C 484D 485C
3 changes: 1 addition & 2 deletions payload/source/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ ifeq ($(BUILD_TYPE),debug)
endif
LDFLAGS = -Tldscript.ld -nostartfiles -nostdlib -nodefaultlibs -Wl,--gc-sections -Wl,-Map=$(TARGET)_$@.map

PAYLOADS := 421C 421D 430C 430D 431C 440C 441C 441D 446C 446D 450C 450D 453C 453D 455C 455D 460C \
465C 465D 470C 470D 475C 475D 476C 476D 478C 478D 480C 480D 481C 481D 482C 482D 483C 484C 484D
include FIRMWARES

define do_payload
$(CC) $(ASFLAGS) -DFIRMWARE_$@ -c start.S -o start.S.o
Expand Down
11 changes: 11 additions & 0 deletions payload/source/symbols.h
Original file line number Diff line number Diff line change
Expand Up @@ -363,4 +363,15 @@
#define GAMEOS_LPAR_SIZE_PTR 0x80000000003A1240ULL
#endif

#ifdef FIRMWARE_485C
#define KERNEL_TOC 0x34FBB0
#define KERNEL_SYMBOL_EXTEND_KSTACK 0x0700A4
#define KERNEL_SYMBOL_COPY_TO_USER 0x00F86C
#define KERNEL_SYMBOL_MEMSET 0x04D66C
#define KERNEL_SYMBOL_MEMCPY 0x07E92C
#define GAMEOS_LPAR_BASE_PTR 0x800000000037A638ULL
#define GAMEOS_LPAR_SIZE_PTR 0x800000000037A640ULL
#endif


#endif /* __SYMBOLS_H__ */
42 changes: 42 additions & 0 deletions source/data.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
#ifndef __DATA_H__
#define __DATA_H__

#include "payload_421C_bin.h"
#include "payload_421D_bin.h"
#include "payload_430C_bin.h"
#include "payload_430D_bin.h"
#include "payload_431C_bin.h"
#include "payload_440C_bin.h"
#include "payload_441C_bin.h"
#include "payload_441D_bin.h"
#include "payload_446C_bin.h"
#include "payload_446D_bin.h"
#include "payload_450C_bin.h"
#include "payload_450D_bin.h"
#include "payload_453C_bin.h"
#include "payload_453D_bin.h"
#include "payload_455C_bin.h"
#include "payload_455D_bin.h"
#include "payload_460C_bin.h"
#include "payload_465C_bin.h"
#include "payload_465D_bin.h"
#include "payload_470C_bin.h"
#include "payload_470D_bin.h"
#include "payload_475C_bin.h"
#include "payload_475D_bin.h"
#include "payload_476C_bin.h"
#include "payload_476D_bin.h"
#include "payload_478C_bin.h"
#include "payload_478D_bin.h"
#include "payload_480C_bin.h"
#include "payload_480D_bin.h"
#include "payload_481C_bin.h"
#include "payload_481D_bin.h"
#include "payload_482C_bin.h"
#include "payload_482D_bin.h"
#include "payload_483C_bin.h"
#include "payload_484C_bin.h"
#include "payload_484D_bin.h"
#include "payload_485C_bin.h"

#endif /* __DATA_H__ */
Loading

0 comments on commit 9a2746f

Please sign in to comment.