xbyak: add int3 instruction

Very useful to stop the JIT
This commit is contained in:
Gregory Hainaut 2016-11-15 19:07:48 +01:00
parent 43b4cfc215
commit 633f7a1db9
1 changed files with 1 additions and 0 deletions

View File

@ -370,6 +370,7 @@ void cwde() { db(0x98); }
void lahf() { db(0x9F); }
void lock() { db(0xF0); }
void nop() { db(0x90); }
void int3() { db(0xCC); }
void sahf() { db(0x9E); }
void stc() { db(0xF9); }
void std() { db(0xFD); }