You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
432 B

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;
}
}