예제 #1
0
        private static void DisplayHelp()
        {
            Console.WriteLine("compress   'inputRom' 'outputRom' 'GameId' 'Version'");
            Console.WriteLine("decompress 'inputRom' 'outputRom' 'GameId' 'Version'");
            Console.WriteLine("swap       'inputRom' 'outputRom' 'SwapType'");
            Console.WriteLine();

            Console.Write("Press Enter to Continue...");
            Console.ReadLine();
            Console.Clear();

            ORom.ConsolePrintSupportedVersions();
            Console.WriteLine();

            MRom.ConsolePrintSupportedVersions();
            Console.WriteLine();

            Console.Write("Press Enter to Continue...");
            Console.ReadLine();
            Console.Clear();

            Console.WriteLine("Swap Types:");
            //                                    00 01 02 03
            Console.WriteLine("little16: converts 01 00 03 02 -> 00 01 02 03");
            Console.WriteLine("little32: converts 03 02 01 00 -> 00 01 02 03");
            //                                    02 03 00 01


            Console.WriteLine();
            Console.WriteLine("Press Enter to Quit");
            Console.ReadLine();
        }
예제 #2
0
 private static void ListSupportedVersions()
 {
     ORom.ConsolePrintSupportedVersions();
     MRom.ConsolePrintSupportedVersions();
 }