mirror of
https://github.com/mike1k/perses
synced 2026-06-06 16:14:33 +00:00
b40c98ec98
The order of the bytes is wrong, if we compare to the file detais.hpp at line #79, the scan will never match.
23 lines
276 B
C
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();\
|
|
}
|