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;
|
||||
|
||||
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 = ">> ";
|
||||
|
|
|
|||
Loading…
Reference in a new issue