fixed typo

This commit is contained in:
cathulhu 2021-12-01 20:14:10 -08:00
parent ec4424b435
commit 2ccd25b5e6
No known key found for this signature in database
GPG Key ID: C5380778D883FD5F

View File

@ -334,6 +334,7 @@ function parseInstruction(line, result, currentLine) {
line = removeComment(line);
line = removeLabel(line);
var mnemonic = getTokens(line)[0]; //this is the instruction IE opcode, like mov, add, pop, etc...
//handle abort cases
if (mnemonic === undefined || mnemonic === "") {
@ -346,7 +347,7 @@ function parseInstruction(line, result, currentLine) {
return
}
var mnemonic = getTokens(line)[0]; //this is the instruction IE opcode, like mov, add, pop, etc...
instructionAnalyzer(line, result, mnemonic)
return
}