mirror of
https://github.com/simon987/Much-Assembly-Required.git
synced 2025-04-19 18:46:43 +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 = removeComment(line);
|
||||||
line = removeLabel(line);
|
line = removeLabel(line);
|
||||||
|
var mnemonic = getTokens(line)[0]; //this is the instruction IE opcode, like mov, add, pop, etc...
|
||||||
|
|
||||||
//handle abort cases
|
//handle abort cases
|
||||||
if (mnemonic === undefined || mnemonic === "") {
|
if (mnemonic === undefined || mnemonic === "") {
|
||||||
@ -346,7 +347,7 @@ function parseInstruction(line, result, currentLine) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
var mnemonic = getTokens(line)[0]; //this is the instruction IE opcode, like mov, add, pop, etc...
|
|
||||||
instructionAnalyzer(line, result, mnemonic)
|
instructionAnalyzer(line, result, mnemonic)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user