예제 #1
0
        protected void RunTest(string path, ushort stopAddress, Action <Memory>?assertFunction = null)
        {
            var emulator = new TestEmulator(path, stopAddress);

            emulator.Run(assertFunction ?? AssertResult);
        }
예제 #2
0
        protected void RunTest(string path, ushort stopAddress)
        {
            var emulator = new TestEmulator(path, stopAddress);

            emulator.Run(AssertResult);
        }