mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-19 02:08:25 +00:00
8256d97b60
Signed-off-by: Adrian.Conlon <adrian.conlon@gmail.com>
22 lines
399 B
C++
22 lines
399 B
C++
#include "stdafx.h"
|
|
#include "TestHarness.h"
|
|
#include "Configuration.h"
|
|
#include "Board.h"
|
|
|
|
#include <iostream>
|
|
|
|
int main(int argc, char* argv[]) {
|
|
|
|
Configuration configuration;
|
|
|
|
#ifdef _DEBUG
|
|
configuration.setDebugMode(true);
|
|
configuration.setProfileMode(true);
|
|
#endif
|
|
|
|
EightBit::TestHarness<Configuration, Board> harness(configuration);
|
|
harness.initialise();
|
|
harness.runLoop();
|
|
|
|
return 0;
|
|
} |