EightBit/Z80/fusetest_Z80/tests.cpp
Adrian Conlon b232e6992c Get the Z80 test suite up and running again.
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
2017-10-28 13:06:10 +01:00

12 lines
156 B
C++

#include "stdafx.h"
#include "FuseTestSuite.h"
int main(int, char*[]) {
Fuse::TestSuite testSuite("fuse-tests\\tests");
testSuite.run();
return 0;
}