gencpp/test/test.cpp

28 lines
279 B
C++
Raw Normal View History

#include "Bloat.cpp"
2023-04-01 19:21:46 -07:00
#ifdef gentime
#include "gen.cpp"
int gen_main()
2023-04-01 19:21:46 -07:00
{
Memory::setup();
2023-04-01 19:21:46 -07:00
zpl_printf("\nPress any key after attaching to process\n");
getchar();
gen::init();
Memory::cleanup();
return result;
}
2023-04-01 19:21:46 -07:00
#endif
#ifdef comptime
2023-04-01 19:21:46 -07:00
int main()
{
return 0;
2023-04-01 19:21:46 -07:00
}
#endif