Initial commit

This commit is contained in:
Alukym
2023-05-12 20:16:10 +08:00
commit a8433f06ee
1167 changed files with 1036549 additions and 0 deletions

15
utils/x86disasm/disasm.h Normal file
View File

@ -0,0 +1,15 @@
#ifndef DISASM_H
#define DISASM_H
#include <string>
#define GEN_INSN_OKAY 0
#define GEN_INSN_IOERROR 1
#define GEN_INSN_ERROR 2
int GenerateInstructions(const std::string & out_filename, bool x64);
#endif