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 MA_RW_LatchType {
boolean RW_enable;
public MA_RW_LatchType()
{
RW_enable = false;
}
public boolean isRW_enable() {
return RW_enable;
}
public void setRW_enable(boolean rW_enable) {
RW_enable = rW_enable;
}
}