Added command to exit assemble mode

This commit is contained in:
Jeff Parsons 2015-09-16 15:44:41 -07:00
commit 6451428016

View file

@ -7547,14 +7547,13 @@ if (DEBUGGER) {
var result = true;
try {
if (!sCmd.length) {
if (!sCmd.length || sCmd == "end") {
if (this.fAssemble) {
this.println("ended assemble @" + this.hexAddr(this.dbgAddrAssemble));
this.dbgAddrNextCode = this.dbgAddrAssemble;
this.fAssemble = false;
} else {
sCmd = '?';
}
sCmd = "";
}
else if (!fQuiet) {
var sPrompt = ">> ";