Added command to exit assemble mode
This commit is contained in:
parent
646acf3a8d
commit
6451428016
1 changed files with 2 additions and 3 deletions
|
|
@ -7547,14 +7547,13 @@ if (DEBUGGER) {
|
||||||
var result = true;
|
var result = true;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
if (!sCmd.length) {
|
if (!sCmd.length || sCmd == "end") {
|
||||||
if (this.fAssemble) {
|
if (this.fAssemble) {
|
||||||
this.println("ended assemble @" + this.hexAddr(this.dbgAddrAssemble));
|
this.println("ended assemble @" + this.hexAddr(this.dbgAddrAssemble));
|
||||||
this.dbgAddrNextCode = this.dbgAddrAssemble;
|
this.dbgAddrNextCode = this.dbgAddrAssemble;
|
||||||
this.fAssemble = false;
|
this.fAssemble = false;
|
||||||
} else {
|
|
||||||
sCmd = '?';
|
|
||||||
}
|
}
|
||||||
|
sCmd = "";
|
||||||
}
|
}
|
||||||
else if (!fQuiet) {
|
else if (!fQuiet) {
|
||||||
var sPrompt = ">> ";
|
var sPrompt = ">> ";
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue