Added Debugger "int" command to manually request interrupts
This commit is contained in:
parent
65ecb282ad
commit
276c36334e
11 changed files with 1328 additions and 44 deletions
|
|
@ -631,7 +631,7 @@ FileDump.prototype.loadMap = function(sMapFile, done)
|
|||
done(new Error("unrecognized line (" + s + ") in MAP file: " + sMapName), null);
|
||||
return;
|
||||
}
|
||||
sMapData = JSON.stringify(aSymbols);
|
||||
sMapData = obj.fJSONComments? JSON.stringify(aSymbols, null, 2) : JSON.stringify(aSymbols);
|
||||
if (sMapData) {
|
||||
obj.json = '{' + obj.json + ',"symbols":' + sMapData + '}';
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue