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 EX_MA_LatchType {
boolean MA_enable;
public EX_MA_LatchType()
{
MA_enable = false;
}
public boolean isMA_enable() {
return MA_enable;
}
public void setMA_enable(boolean mA_enable) {
MA_enable = mA_enable;
}
}