mirror of
https://github.com/Ed94/gencpp.git
synced 2024-11-10 02:54:53 -08:00
49 lines
654 B
C++
49 lines
654 B
C++
#include "Bloat.cpp"
|
|
// #include "Parsed\Array.Parsed.hpp"
|
|
// #include "Parsed\Buffer.Parsed.hpp"
|
|
// #include "Parsed\HashTable.Parsed.hpp"
|
|
// #include "Parsed\Ring.Parsed.hpp"
|
|
#include "Parsed\Sanity.Parsed.hpp"
|
|
|
|
|
|
#ifdef gen_time
|
|
#include "gen.cpp"
|
|
|
|
using namespace gen;
|
|
|
|
|
|
int gen_main()
|
|
{
|
|
Memory::setup();
|
|
gen::init();
|
|
|
|
gen_sanity();
|
|
|
|
// gen_array( u8 );
|
|
// gen_array( sw );
|
|
|
|
// gen_buffer( u8 );
|
|
|
|
// gen_hashtable( u32 );
|
|
|
|
// gen_ring( s16 );
|
|
|
|
// gen_array_file();
|
|
// gen_buffer_file();
|
|
// gen_hashtable_file();
|
|
// gen_ring_file();
|
|
|
|
gen::deinit();
|
|
Memory::cleanup();
|
|
return 0;
|
|
}
|
|
#endif
|
|
|
|
|
|
#ifdef runtime
|
|
int main()
|
|
{
|
|
return 0;
|
|
}
|
|
#endif
|