node {
void evaluate(Context ctx) {
emitValue<output_DIMMU0027>(ctx, getValue<input_DIMM>(ctx));
if (!isInputDirty<input_SET>(ctx))return;
auto dimm = getValue<input_DIMM>(ctx);
uint8_t val = getValue<input_POWER>(ctx);
dimm->setPower(val);
emitValue<output_DONE>(ctx, 1);
}
}