#ifndef EMUL_INST_EXEC__ #define EMUL_INST_EXEC__ #include "emul_inst_decipher.h" #include "emul_reg.h" #include "emul_mem.h" int emul_inst_exec_loadfile(char*); void emul_inst_exec_closefile(); /* Execute Step * RETURN: * seccsess: 1 * failed : 0 */ int emul_inst_exec_step(); /* Execute Run All * RETURN: * seccsess: 1 * failed : 0 */ int emul_inst_exec_run(); #endif