Support for 80386 register dumps

This commit is contained in:
Jeff Parsons 2015-02-23 12:02:06 -08:00 committed by jeffpar
commit 5303d2fe20
12 changed files with 384 additions and 124 deletions

View file

@ -166,21 +166,6 @@ str.toHexWord = function(w)
return str.toHex(w, 4);
};
/**
* toHexAddr(off, sel)
*
* @param {number} off
* @param {number} [sel]
* @return {string} the hex representation of sel:off
*/
str.toHexAddr = function(off, sel)
{
if (sel !== undefined) {
return str.toHexWord(sel) + ":" + str.toHexWord(off);
}
return str.toHex(off);
};
/**
* getBaseName(sFileName, fStripExt)
*