mirror of
https://github.com/asmjit/asmjit.git
synced 2025-12-17 04:24:37 +03:00
Added support for BND/REPNE call/jmp/jcc/ret
This commit is contained in:
@@ -189,6 +189,7 @@ class GenUtils {
|
||||
if (dbInst.attributes.Lock ) f.Lock = true;
|
||||
if (dbInst.attributes.XAcquire ) f.XAcquire = true;
|
||||
if (dbInst.attributes.XRelease ) f.XRelease = true;
|
||||
if (dbInst.attributes.BND ) f.Rep = true;
|
||||
if (dbInst.attributes.REP ) f.Rep = true;
|
||||
if (dbInst.attributes.REPNE ) f.Rep = true;
|
||||
if (dbInst.attributes.RepIgnored) f.RepIgnored = true;
|
||||
|
||||
@@ -23,7 +23,7 @@ const fs = require("fs");
|
||||
const hasOwn = Object.prototype.hasOwnProperty;
|
||||
|
||||
const asmdb = (function() {
|
||||
// Try to import local 'asmdb' package, if available.
|
||||
// Try to import a local 'asmdb' package, if available.
|
||||
try {
|
||||
return require("./asmdb");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user