diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2025-10-01 15:56:05 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2025-10-01 15:56:05 +0200 |
| commit | 5ac53d6be2fd9f1d0c3679fac1cc14259c335243 (patch) | |
| tree | 7d970d955b6ead1bca59d62fe03044cece9fa854 /src/include | |
| parent | a02873b9ee1abaf252fbc596fc6bab093587f85d (diff) | |
| download | box64-5ac53d6be2fd9f1d0c3679fac1cc14259c335243.tar.gz box64-5ac53d6be2fd9f1d0c3679fac1cc14259c335243.zip | |
[TRACE] Added tooling to check if x86/x64 opcode is valid
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/x64trace.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/x64trace.h b/src/include/x64trace.h index 9a1f20a2..74e092dc 100644 --- a/src/include/x64trace.h +++ b/src/include/x64trace.h @@ -14,5 +14,6 @@ zydis_dec_t* InitX64TraceDecoder(box64context_t *context); void DeleteX64TraceDecoder(zydis_dec_t **dec); const char* DecodeX64Trace(zydis_dec_t* dec, uintptr_t p, int withhex); +int OpcodeOK(zydis_dec_t* dec, uintptr_t p); #endif //__X64TRACE_H_ \ No newline at end of file |