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
277 B

package processor.pipeline;
public class IF_EnableLatchType {
boolean IF_enable;
public IF_EnableLatchType()
{
IF_enable = true;
}
public boolean isIF_enable() {
return IF_enable;
}
public void setIF_enable(boolean iF_enable) {
IF_enable = iF_enable;
}
}