EightBit/Z80/test/test.cpp
Adrian Conlon c292fb552e A whole bunch of consistency changes. No functional changes.
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
2017-11-03 22:05:01 +00:00

21 lines
369 B
C++

#include "stdafx.h"
#include "Configuration.h"
#include "Board.h"
#include <TestHarness.h>
int main(int, char*[]) {
Configuration configuration;
#ifdef _DEBUG
configuration.setDebugMode(true);
configuration.setProfileMode(true);
#endif
EightBit::TestHarness<Configuration, Board> harness(configuration);
harness.initialise();
harness.runLoop();
return 0;
}