mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-08 22:06:20 +00:00
fdbb28828f
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
19 lines
341 B
C++
19 lines
341 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
|
|
|
|
EightBit::TestHarness<Configuration, Board> harness(configuration);
|
|
harness.run();
|
|
|
|
return 0;
|
|
} |