mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-19 17:30:56 +00:00
22 lines
363 B
C++
22 lines
363 B
C++
|
#include "stdafx.h"
|
||
|
#include "Configuration.h"
|
||
|
#include "Board.h"
|
||
|
|
||
|
#include <TestHarness.h>
|
||
|
|
||
|
#include <iostream>
|
||
|
|
||
|
int main(int argc, char* argv[]) {
|
||
|
|
||
|
Configuration configuration;
|
||
|
|
||
|
#ifdef _DEBUG
|
||
|
configuration.setDebugMode(true);
|
||
|
#endif
|
||
|
|
||
|
EightBit::TestHarness<Configuration, Board> harness(configuration);
|
||
|
harness.initialise();
|
||
|
harness.runLoop();
|
||
|
|
||
|
return 0;
|
||
|
}
|