Skip to content
This repository has been archived by the owner on Aug 17, 2019. It is now read-only.

Commit

Permalink
Added support for 11.0 firmwares
Browse files Browse the repository at this point in the history
I'll work on patches later....
  • Loading branch information
Wolfvak committed May 10, 2016
1 parent 1259df3 commit 78f24bb
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions source/firm.c
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,11 @@ struct firm_signature firm_signatures[] = {
.version = 0x50,
.version_string = "10.4.0",
.console = console_o3ds
}, {
.sig = {0xE9, 0xAD, 0x74, 0x9D, 0x46, 0x9C, 0x9C, 0xF4, 0x96, 0x9E, 0x1A, 0x7A, 0xDF, 0x40, 0x2A, 0x82},
.version = 0x52,
.version_string = "11.0.0",
.console = console_o3ds
}, {
.sig = {0x31, 0xCC, 0x46, 0xCD, 0x61, 0x7A, 0xE7, 0x13, 0x7F, 0xE5, 0xFC, 0x20, 0x46, 0x91, 0x6A, 0xBB},
.version = 0x04,
Expand All @@ -94,6 +99,11 @@ struct firm_signature firm_signatures[] = {
.version = 0x1F,
.version_string = "10.4.0",
.console = console_n3ds
}, {
.sig = {0x52, 0x30, 0x0F, 0x55, 0xA2, 0x64, 0x4E, 0xFF, 0x96, 0x90, 0xF0, 0xE5, 0x6E, 0xC8, 0x2E, 0xB3},
.version = 0x21,
.version_string = "11.0.0",
.console = console_n3ds
}, {.version = 0xFF}
};

Expand Down

0 comments on commit 78f24bb

Please sign in to comment.