| 1 | /* | 
 
 
 
 
 | 2 | * BeaEngine 4 - x86 & x86-64 disassembler library | 
 
 
 
 
 | 3 | * | 
 
 
 
 
 | 4 | * Copyright 2006-2010, BeatriX | 
 
 
 
 
 | 5 | * File coded by BeatriX | 
 
 
 
 
 | 6 | * | 
 
 
 
 
 | 7 | * This file is part of BeaEngine. | 
 
 
 
 
 | 8 | * | 
 
 
 
 
 | 9 | *    BeaEngine is free software: you can redistribute it and/or modify | 
 
 
 
 
 | 10 | *    it under the terms of the GNU Lesser General Public License as published by | 
 
 
 
 
 | 11 | *    the Free Software Foundation, either version 3 of the License, or | 
 
 
 
 
 | 12 | *    (at your option) any later version. | 
 
 
 
 
 | 13 | * | 
 
 
 
 
 | 14 | *    BeaEngine is distributed in the hope that it will be useful, | 
 
 
 
 
 | 15 | *    but WITHOUT ANY WARRANTY; without even the implied warranty of | 
 
 
 
 
 | 16 | *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
 
 
 
 
 | 17 | *    GNU Lesser General Public License for more details. | 
 
 
 
 
 | 18 | * | 
 
 
 
 
 | 19 | *    You should have received a copy of the GNU Lesser General Public License | 
 
 
 
 
 | 20 | *    along with BeaEngine.  If not, see <http://www.gnu.org/licenses/>. */ | 
 
 
 
 
 | 21 |  | 
 
 
 
 
 | 22 | #include <stdio.h> | 
 
 
 
 
 | 23 | #include <stdlib.h> | 
 
 
 
 
 | 24 | #include <string.h> | 
 
 
 
 
 | 25 |  | 
 
 
 
 
 | 26 | #include "beaengine/BeaEngine.h" | 
 
 
 
 
 | 27 | #include "Includes/protos.h" | 
 
 
 
 
 | 28 | #include "Includes/internal_datas.h" | 
 
 
 
 
 | 29 | #include "Includes/instr_set/Data_opcode.h" | 
 
 
 
 
 | 30 | #include "Includes/instr_set/opcodes_A_M.c" | 
 
 
 
 
 | 31 | #include "Includes/instr_set/opcodes_N_Z.c" | 
 
 
 
 
 | 32 | #include "Includes/instr_set/opcodes_Grp1.c" | 
 
 
 
 
 | 33 | #include "Includes/instr_set/opcodes_Grp2.c" | 
 
 
 
 
 | 34 | #include "Includes/instr_set/opcodes_Grp3.c" | 
 
 
 
 
 | 35 | #include "Includes/instr_set/opcodes_Grp4.c" | 
 
 
 
 
 | 36 | #include "Includes/instr_set/opcodes_Grp5.c" | 
 
 
 
 
 | 37 | #include "Includes/instr_set/opcodes_Grp6.c" | 
 
 
 
 
 | 38 | #include "Includes/instr_set/opcodes_Grp7.c" | 
 
 
 
 
 | 39 | #include "Includes/instr_set/opcodes_Grp8.c" | 
 
 
 
 
 | 40 | #include "Includes/instr_set/opcodes_Grp9.c" | 
 
 
 
 
 | 41 | #include "Includes/instr_set/opcodes_Grp12.c" | 
 
 
 
 
 | 42 | #include "Includes/instr_set/opcodes_Grp13.c" | 
 
 
 
 
 | 43 | #include "Includes/instr_set/opcodes_Grp14.c" | 
 
 
 
 
 | 44 | #include "Includes/instr_set/opcodes_Grp15.c" | 
 
 
 
 
 | 45 | #include "Includes/instr_set/opcodes_Grp16.c" | 
 
 
 
 
 | 46 | #include "Includes/instr_set/opcodes_FPU.c" | 
 
 
 
 
 | 47 | #include "Includes/instr_set/opcodes_MMX.c" | 
 
 
 
 
 | 48 | #include "Includes/instr_set/opcodes_SSE.c" | 
 
 
 
 
 | 49 | #include "Includes/instr_set/opcodes_AES.c" | 
 
 
 
 
 | 50 | #include "Includes/instr_set/opcodes_CLMUL.c" | 
 
 
 
 
 | 51 | #include "Includes/instr_set/opcodes_prefixes.c" | 
 
 
 
 
 | 52 | #include "Includes/Routines_ModRM.c" | 
 
 
 
 
 | 53 | #include "Includes/Routines_Disasm.c" | 
 
 
 
 
 | 54 | #include "Includes/BeaEngineVersion.c" | 
 
 
 
 
 | 55 |  | 
 
 
 
 
 | 56 | void BeaEngine(void){return;} |