int32.positive offset in the table
int32.positive write index
bool32.rising toggle the table's content at 'index'
frac32.positive value if index is set to 'high'
bool32 state of the step at index
frac32.u.map value if index is set to 'high'
objref table
int ntrig;
bool op;
if ((inlet_toggle > 0) && !ntrig) {
ntrig = 1;
op = attr_table.array[(inlet_index + inlet_offset)];
op = !op;
attr_table.array[(inlet_index + inlet_offset)] =
(op * (__SSAT(((param_value + inlet_value)), 28) >> attr_table.GAIN));
}
if (!(inlet_toggle > 0)) {
ntrig = 0;
}
outlet_state = attr_table.array[(inlet_index + inlet_offset)];