mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-05 19:05:32 +00:00
6bb8118c7f
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
23 lines
402 B
C++
23 lines
402 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
|
|
//configuration.setDebugMode(true);
|
|
|
|
EightBit::TestHarness<Configuration, Board> harness(configuration);
|
|
harness.initialise();
|
|
harness.runLoop();
|
|
|
|
return 0;
|
|
} |