f3df2ecf17
-Optimizations + PGO (profile guided optimization) build support
14 lines
183 B
C++
14 lines
183 B
C++
#include <tchar.h>
|
|
|
|
extern "C" {
|
|
void __stdcall LoadROM(wchar_t* filename);
|
|
void __stdcall Run();
|
|
}
|
|
|
|
int _tmain(int argc, _TCHAR* argv[])
|
|
{
|
|
LoadROM(argv[1]);
|
|
Run();
|
|
return 0;
|
|
}
|
|
|