Skip to content
This repository was archived by the owner on Jun 30, 2020. It is now read-only.

Commit b74c082

Browse files
committed
1.2.0 port
1 parent 8f9464f commit b74c082

11 files changed

Lines changed: 29576 additions & 8 deletions

File tree

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto

.gitignore

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
*.elf
2+
*.i64
3+
*.id0
4+
*.id1
5+
*.id2
6+
*.idb
7+
*.nso
8+
*.pfs0
9+
*.nacp
10+
*.nam
11+
*.nro
12+
*.o
13+
*.txt
14+
*.til
15+
*.pchtxt
16+
*.ips
17+
.vscode/
18+
build*/
19+
debug/
20+
release/
21+
lib/
22+
linkerscripts/symstemp.ld
23+
skyline_patch*/
24+
scripts/.idea/*
25+
!exported.txt

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
.PHONY: all clean skyline skyline_patch send
55

6-
CROSSVER ?= 111
6+
CROSSVER ?= 120
77
IP ?= 192.168.1.8
88

99
all: skyline skyline_patch send

linkerscripts/syms120.ld

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
blank = 0;

patches/codehook_120.slpatch

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
[version=120, target=main]

patches/configs/120.config

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[build_id]
2+
main=89048449BA238C8CF565518B83BF02D3
3+
4+
[nso_load_addr]
5+
main=0
6+
subsdk0=0x3174000
7+
;sdk=subsdk0+1 TODO: need load address formula to calculate

patches/maps/120/main.map

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+


patches/maps/120/sdk.map

Lines changed: 29533 additions & 0 deletions
Large diffs are not rendered by default.

scripts/sendPatch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def ensuredirectory(connection,root,path):
3333
consolePort = 5000
3434

3535
if len(sys.argv) < 4:
36-
version = '111'
36+
version = '120'
3737
else:
3838
version = sys.argv[2]
3939

0 commit comments

Comments
 (0)