In Assembler.java, I moved the overloaded parseDWInstruction() method to be sequential to the earlier method of the same name.

This commit is contained in:
Richard Cuthbert 2019-06-19 00:05:44 +01:00
parent 2982fcbbc1
commit 3a35f3fdfc

View File

@ -219,6 +219,17 @@ public class Assembler {
return bos.toByteArray();
}
/**
* Parse the DW instruction (Define word). Handles DUP operator
*
* @param line Current line. assuming that comments and labels are removed
* @param currentLine Current line number
* @return Encoded instruction, null if the line is not a DW instruction
*/
private static byte[] parseDWInstruction(String line, int currentLine) throws AssemblyException {
return parseDWInstruction(line, null, currentLine);
}
/**
* Parse the dup operator
@ -271,17 +282,6 @@ public class Assembler {
}
/**
* Parse the DW instruction (Define word). Handles DUP operator
*
* @param line Current line. assuming that comments and labels are removed
* @param currentLine Current line number
* @return Encoded instruction, null if the line is not a DW instruction
*/
private static byte[] parseDWInstruction(String line, int currentLine) throws AssemblyException {
return parseDWInstruction(line, null, currentLine);
}
/**
* Check for and handle section declarations (.text and .data)
*