aboutsummaryrefslogtreecommitdiff
path: root/Program.cs
diff options
context:
space:
mode:
authorMerry <MerryMage@users.noreply.github.com>2018-02-16 00:04:38 +0000
committergdkchan <gab.dark.100@gmail.com>2018-02-15 21:04:38 -0300
commit1bfe6a9c22c55086f171bd9c7cd7ff1855415ff8 (patch)
tree00ca2b4eea39342e1f8d89783c20cf207a0f8f3a /Program.cs
parent1df2c5ce7f52f34bb01e392e8bc4b00cc691614a (diff)
Add some tests (#18)
* Add tests * Add some simple Alu instruction tests * travis: Run tests * CpuTest: Add TearDown
Diffstat (limited to 'Program.cs')
-rw-r--r--Program.cs65
1 files changed, 0 insertions, 65 deletions
diff --git a/Program.cs b/Program.cs
deleted file mode 100644
index 88a8a117..00000000
--- a/Program.cs
+++ /dev/null
@@ -1,65 +0,0 @@
-using Gal;
-using Gal.OpenGL;
-using System;
-using System.IO;
-
-namespace Ryujinx
-{
- class Program
- {
- static void Main(string[] args)
- {
- Config.Read();
-
- Console.Title = "Ryujinx Console";
-
- IGalRenderer Renderer = new OpenGLRenderer();
-
- Switch Ns = new Switch(Renderer);
-
- if (args.Length == 1)
- {
- if (Directory.Exists(args[0]))
- {
- string[] RomFsFiles = Directory.GetFiles(args[0], "*.istorage");
-
- if (RomFsFiles.Length > 0)
- {
- Logging.Info("Loading as cart with RomFS.");
-
- Ns.Os.LoadCart(args[0], RomFsFiles[0]);
- }
- else
- {
- Logging.Info("Loading as cart WITHOUT RomFS.");
-
- Ns.Os.LoadCart(args[0]);
- }
- }
- else if (File.Exists(args[0]))
- {
- Logging.Info("Loading as homebrew.");
-
- Ns.Os.LoadProgram(args[0]);
- }
- }
- else
- {
- Logging.Error("Please specify the folder with the NSOs/IStorage or a NSO/NRO.");
- }
-
- using (GLScreen Screen = new GLScreen(Ns, Renderer))
- {
- Ns.Finish += (Sender, Args) => {
- Screen.Exit();
- };
-
- Screen.Run(60.0);
- }
-
- Ns.Os.FinalizeAllProcesses();
-
- Ns.Dispose();
- }
- }
-}