diff --git a/Operator1.c b/Operator1.c new file mode 100644 index 0000000..fc1f9fc --- /dev/null +++ b/Operator1.c @@ -0,0 +1,18 @@ +#include "Operator1.h" + +void Operator1_reset(outC_Operator1 *outC) +{ + /*skip*/ +} + +void Operator1(inC_Operator1 *inC, outC_Operator1 *outC) +{ + acg_char _L3; + acg_char _L4; + _L3 = inC->Input1; + outC->Output2 = _L3; + _L4 = _L3 + _L3; + outC->Output1 = _L4; +} + +