Files
EightBitNet/LR35902/LR35902.FuseTest/Program.cs
2025-01-26 21:17:07 +00:00

18 lines
425 B
C#

// <copyright file="Program.cs" company="Adrian Conlon">
// Copyright (c) Adrian Conlon. All rights reserved.
// </copyright>
namespace LR35902.FuseTest
{
public static class Program
{
public static void Main(string[] args)
{
var suite = new TestSuite<RegisterState>("fuse-tests\\tests");
suite.Read();
suite.Parse();
suite.Run();
}
}
}