Files
Lucas Guilherme b40c98ec98 Fixed wrong byte order
The order of the bytes is wrong, if we compare to the file detais.hpp at line #79, the scan will never match.
2022-04-14 16:46:16 -03:00

23 lines
276 B
C

#pragma once
#include <intrin.h>
#include <intrin0.h>
#define PERSES_MUTATION_START() \
{\
__debugbreak();\
__debugbreak();\
__nop();\
__nop();\
_disable();\
}
#define PERSES_MUTATION_END() \
{\
_enable();\
__nop();\
__nop();\
__debugbreak();\
__debugbreak();\
}