mirror of
https://github.com/simon987/Much-Assembly-Required.git
synced 2025-04-10 14:26:45 +00:00
remove package private attributes
This commit is contained in:
parent
d5ddb8e439
commit
439547102f
@ -10,9 +10,9 @@ import java.util.HashMap;
|
||||
*/
|
||||
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]")
|
||||
@ -252,7 +252,7 @@ public class Operand {
|
||||
}
|
||||
}
|
||||
|
||||
OperandType getType() {
|
||||
public OperandType getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
@ -260,7 +260,7 @@ public class Operand {
|
||||
return value;
|
||||
}
|
||||
|
||||
int getData() {
|
||||
public int getData() {
|
||||
return data;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user