29 lines
579 B
C#
29 lines
579 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.IO;
|
|||
|
|
|||
|
namespace BizHawk
|
|||
|
{
|
|||
|
class DiscoHawk
|
|||
|
{
|
|||
|
static void Main(string[] args)
|
|||
|
{
|
|||
|
new DiscoHawk().Run(args);
|
|||
|
}
|
|||
|
|
|||
|
void Run(string[] args)
|
|||
|
{
|
|||
|
//string testfile = @"d:\Radiant Silvergun (J)\Radiant Silvergun (J).cue";
|
|||
|
//var disc = Disc.Disc.FromCuePath(testfile);
|
|||
|
|
|||
|
//string testfile = @"r:\isos\memtest86-3.2.iso";
|
|||
|
//var disc = Disc.Disc.FromIsoPath(testfile);
|
|||
|
|
|||
|
//Console.WriteLine(disc.ReadTOC().DebugPrint());
|
|||
|
//disc.DumpBin_2352("d:\\test.2352");
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
}
|