mirror of
https://github.com/simon987/Much-Assembly-Required.git
synced 2025-04-10 14:26:45 +00:00
fixed typo
This commit is contained in:
parent
ec4424b435
commit
2ccd25b5e6
@ -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
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user