aboutsummaryrefslogtreecommitdiff
path: root/utils/x86disasm/disasm.h
blob: 0124dccf75c849d8301be4d93a4c7a22301d9801 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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