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.

20 lines
272 B

package processor.pipeline;
public class OF_EX_LatchType {
boolean EX_enable;
public OF_EX_LatchType()
{
EX_enable = false;
}
public boolean isEX_enable() {
return EX_enable;
}
public void setEX_enable(boolean eX_enable) {
EX_enable = eX_enable;
}
}