mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-05 03:07:44 +00:00
b6dd48ca63
Signed-off-by: Adrian.Conlon <adrian.conlon@gmail.com>
21 lines
407 B
C++
21 lines
407 B
C++
#include "stdafx.h"
|
|
#include "TestHarness.h"
|
|
#include "Board.h"
|
|
#include "Configuration.h"
|
|
|
|
int main(int, char*[]) {
|
|
|
|
Configuration configuration;
|
|
|
|
#ifdef _DEBUG
|
|
//configuration.setDebugMode(true);
|
|
configuration.setProfileMode(true);
|
|
#endif
|
|
//configuration.setDebugMode(true);
|
|
|
|
EightBit::TestHarness<Configuration, Board> harness(configuration);
|
|
harness.initialise();
|
|
harness.runLoop();
|
|
|
|
return 0;
|
|
} |