Add project files.

This commit is contained in:
Deterous
2023-10-25 17:48:29 +13:00
commit e542dcbfd9
10 changed files with 1842 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
using LibIRD;
using System;
namespace BuildIRD
{
internal class BuildIRD
{
static void Main()
{
byte[] discKey = new byte[] { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
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);
Console.WriteLine(ird.HeaderLength);
}
}
}