gencpp/test/test.cpp
2023-04-02 12:25:08 -04:00

33 lines
392 B
C++

#include "Bloat.cpp"
#include "math.hpp"
#ifdef gen_time
#include "gen.cpp"
int gen_main()
{
Memory::setup();
zpl_printf("\nPress any key after attaching to process\n");
getchar();
int result = gen_math();
Memory::cleanup();
return result;
}
#endif
#ifndef gen_time
#include "math.hpp"
int main()
{
u32 result = square( 5U );
zpl_printf("TEST RESULT: %d", result);
}
#endif