mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-18 11:06:15 +00:00
c292fb552e
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
21 lines
369 B
C++
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;
|
|
} |