mirror of
				https://github.com/MoleskiCoder/EightBitNet.git
				synced 2025-10-30 20:16:03 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			469 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			469 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| // <copyright file="Program.cs" company="Adrian Conlon">
 | |
| // Copyright (c) Adrian Conlon. All rights reserved.
 | |
| // </copyright>
 | |
| 
 | |
| namespace M6502.Test
 | |
| {
 | |
|     internal static class Program
 | |
|     {
 | |
|         public static void Main(string[] args)
 | |
|         {
 | |
|             var configuration = new Configuration();
 | |
| 
 | |
| #if DEBUG
 | |
|             configuration.DebugMode = false;
 | |
| #endif
 | |
|             var harness = new TestHarness(configuration);
 | |
|             harness.Run();
 | |
|         }
 | |
|     }
 | |
| }
 |