#include #include #include "emulator.h" #include "test_loader.h" int main(int argc, char ** argv) { test_loader * loader = new test_loader(); emulator * em = new emulator(loader, 1024, 256, 16); em->run(); em->set_constants(0.5); fprintf(stderr, "Ouput= %s\n", em->get_output_value(0)->to_string().c_str()); }