EightBit/Z80/test/test.cpp
Adrian Conlon fdbb28828f Apply the concept of powered components to the "board"
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
2018-11-11 16:48:44 +00:00

20 lines
342 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.run();
return 0;
}