Added support for segment wrap-around in 8086/8088 real-mode (all stack operations, instruction fetches, and operand accesses should wrap now); real-mode wrap-around on newer processors should trigger a GP fault instead

This commit is contained in:
Jeff 2017-07-23 14:59:26 -07:00 committed by Jeff Parsons
commit 6a3f7f4a5d
15 changed files with 3156 additions and 2906 deletions

View file

@ -492,6 +492,8 @@ MarkOut.prototype.convertMD = function(sIndent)
cProps = 0;
} else {
if (cProps++) sValue += ',';
var match = sPropValue.match(/^"(.*)"$/);
if (match) sPropValue = match[1];
sValue += '"' + sPropName + '":"' + sPropValue + '"';
}
}