protected void RunTest(string path, ushort stopAddress, Action <Memory>?assertFunction = null) { var emulator = new TestEmulator(path, stopAddress); emulator.Run(assertFunction ?? AssertResult); }
protected void RunTest(string path, ushort stopAddress) { var emulator = new TestEmulator(path, stopAddress); emulator.Run(AssertResult); }