CS311_assignment3/src/processor/pipeline/IF_OF_LatchType.java

30 lines
432 B
Java
Raw Normal View History

2019-08-29 17:25:31 +05:30
package processor.pipeline;
public class IF_OF_LatchType {
boolean OF_enable;
int instruction;
public IF_OF_LatchType()
{
OF_enable = false;
}
public boolean isOF_enable() {
return OF_enable;
}
public void setOF_enable(boolean oF_enable) {
OF_enable = oF_enable;
}
public int getInstruction() {
return instruction;
}
public void setInstruction(int instruction) {
this.instruction = instruction;
}
}