Commit 8db6598a authored by swift_gan's avatar swift_gan Committed by swift_gan

tweak include

parent e1b78388
...@@ -6,9 +6,9 @@ ...@@ -6,9 +6,9 @@
#define SANDHOOK_NH_INST_ARM64_H #define SANDHOOK_NH_INST_ARM64_H
#include "inst_struct_aarch64.h" #include "inst_struct_aarch64.h"
#include "../../../asm/instruction.h" #include "instruction.h"
#include "../../../includes/base.h" #include "base.h"
#include "../register/register_list_a64.h" #include "register_list_a64.h"
#define INST_A64(X) A64_##X #define INST_A64(X) A64_##X
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
#define SANDHOOK_NH_INST_AARCH64_H #define SANDHOOK_NH_INST_AARCH64_H
#include "../../../asm/instruction.h" #include "instruction.h"
#include "inst_code_arm64.h" #include "inst_code_arm64.h"
#define STRUCT_A64(X) A64_STRUCT_##X #define STRUCT_A64(X) A64_STRUCT_##X
...@@ -132,7 +132,7 @@ struct STRUCT_A64(CBZ_CBNZ) { ...@@ -132,7 +132,7 @@ struct STRUCT_A64(CBZ_CBNZ) {
DEFINE_OPCODE(B_COND, 0b01010100) DEFINE_OPCODE(B_COND, 0b01010100)
struct STRUCT_A64(B_COND) { struct STRUCT_A64(B_COND) {
InstA64 cond:4; InstA64 cond:4;
InstA64 unkown:1; InstA64 unkown_0:1;
InstA64 imm19:19; InstA64 imm19:19;
InstA64 opcode:8; InstA64 opcode:8;
}; };
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
#define SANDHOOK_NH_REGISTER_LIST_A64_H #define SANDHOOK_NH_REGISTER_LIST_A64_H
#include "register_a64.h" #include "register_a64.h"
#include "../../../includes/base.h" #include "base.h"
using namespace SandHook::Asm; using namespace SandHook::Asm;
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
#define SANDHOOK_NH_CODE_RELOCATE_H #define SANDHOOK_NH_CODE_RELOCATE_H
#include "exception.h" #include "exception.h"
#include "../asm/instruction.h" #include "instruction.h"
namespace SandHook { namespace SandHook {
namespace Asm { namespace Asm {
......
...@@ -5,8 +5,8 @@ ...@@ -5,8 +5,8 @@
#ifndef SANDHOOK_NH_DECODER_H #ifndef SANDHOOK_NH_DECODER_H
#define SANDHOOK_NH_DECODER_H #define SANDHOOK_NH_DECODER_H
#include "../includes/base.h" #include "base.h"
#include "../asm/instruction.h" #include "instruction.h"
namespace SandHook { namespace SandHook {
namespace Decoder { namespace Decoder {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment