remove package private attributes

This commit is contained in:
Kevin Ramharak 2019-01-22 20:54:59 +01:00
parent d5ddb8e439
commit 439547102f

View File

@ -10,9 +10,9 @@ import java.util.HashMap;
*/ */
public class Operand { public class Operand {
static final int IMMEDIATE_VALUE = 0b11111; //1 1111 public static final int IMMEDIATE_VALUE = 0b11111; //1 1111
static final int IMMEDIATE_VALUE_MEM = 0b11110; //1 1110 public static final int IMMEDIATE_VALUE_MEM = 0b11110; //1 1110
/** /**
* The actual text of the operand (e.g. "[AX]") * The actual text of the operand (e.g. "[AX]")
@ -252,7 +252,7 @@ public class Operand {
} }
} }
OperandType getType() { public OperandType getType() {
return type; return type;
} }
@ -260,7 +260,7 @@ public class Operand {
return value; return value;
} }
int getData() { public int getData() {
return data; return data;
} }
} }