Started work on instruction testing

This commit is contained in:
Jeff Parsons 2015-10-14 18:05:21 -07:00
commit 0cc582405d
3 changed files with 236 additions and 137 deletions

View file

@ -297,7 +297,7 @@ function doCommand(sCmd)
default:
if (sCmd) {
try {
if (dbg && !dbg.doCommand(sCmd, true)) {
if (dbg && !dbg.doCommands(sCmd, true)) {
sCmd = '(' + sCmd + ')';
result = eval(sCmd); // jshint ignore:line
}