Added support for BND/REPNE call/jmp/jcc/ret

This commit is contained in:
kobalicek
2020-02-23 22:51:53 +01:00
parent 967dde0fc4
commit 0072c202db
4 changed files with 1652 additions and 1635 deletions

View File

@@ -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;

View File

@@ -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");
}