Added libdisasm to 3rd_party.

Started the move of 'prog' global into Project.
This commit is contained in:
Artur K
2012-03-17 21:36:10 +01:00
parent b85106498e
commit 467ff56356
37 changed files with 9207 additions and 29 deletions

13
3rd_party/libdisasm/ia32_settings.cpp vendored Normal file
View File

@@ -0,0 +1,13 @@
#include "libdis.h"
#include "ia32_settings.h"
#include "ia32_reg.h"
#include "ia32_insn.h"
ia32_settings_t ia32_settings = {
1, 0xF4,
MAX_INSTRUCTION_SIZE,
4, 4, 8, 4, 8,
REG_ESP_INDEX, REG_EBP_INDEX, REG_EIP_INDEX, REG_FLAGS_INDEX,
REG_DWORD_OFFSET, REG_SEG_OFFSET, REG_FPU_OFFSET,
opt_none
};