// // Copyright (c) Adrian Conlon. All rights reserved. // namespace M6502.Test { internal class TestHarness { private Board board; public TestHarness(Configuration configuration) { this.board = new Board(configuration); } public void Run() { this.board.Initialize(); this.board.RaisePOWER(); var cpu = this.board.CPU; while (cpu.Powered) { cpu.Step(); } } } }