PARAM.SFO parsing

This commit is contained in:
Deterous
2023-10-28 23:57:38 +13:00
parent 026e2c1d85
commit dd9945f3a0
5 changed files with 279 additions and 5 deletions
+2 -2
View File
@@ -3,7 +3,7 @@ using System;
namespace BuildIRD
{
internal class BuildIRD
internal class Program
{
static void Main()
{
@@ -11,7 +11,7 @@ namespace BuildIRD
byte[] discID = new byte[] { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
byte[] discPIC = new byte[] { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
IRD ird = new IRD("Z:", discKey, discID, discPIC);
ird.Write("./ ird.ird");
ird.Write("./test.ird");
Console.WriteLine(ird.HeaderLength);
}
}