File tree Expand file tree Collapse file tree
TiaCodegen/Commands/Functions/Arithmetic Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44
55namespace TiaCodegen . Commands . Functions . Arithmetic
66{
7- public class MulCall : VariableArithmeticCall
7+ public class AddCall : VariableArithmeticCall
88 {
9- public MulCall ( string type ,
9+ public AddCall ( string type ,
1010 IOperationOrSignal in1 ,
1111 IOperationOrSignal in2 ,
1212 IOperationOrSignal in3 = null ,
@@ -58,7 +58,7 @@ public MulCall(string type,
5858 IOperationOrSignal in49 = null ,
5959 IOperationOrSignal in50 = null ,
6060 IOperationOrSignal out1 = null ,
61- IOperationOrSignal eno = null ) : base ( "Mul " , eno )
61+ IOperationOrSignal eno = null ) : base ( "Add " , eno )
6262 {
6363 DisableEno = true ;
6464 Type = type ;
Original file line number Diff line number Diff line change 44
55namespace TiaCodegen . Commands . Functions . Arithmetic
66{
7- public class AddCall : VariableArithmeticCall
7+ public class MulCall : VariableArithmeticCall
88 {
9- public AddCall ( string type ,
9+ public MulCall ( string type ,
1010 IOperationOrSignal in1 ,
1111 IOperationOrSignal in2 ,
1212 IOperationOrSignal in3 = null ,
@@ -58,7 +58,7 @@ public AddCall(string type,
5858 IOperationOrSignal in49 = null ,
5959 IOperationOrSignal in50 = null ,
6060 IOperationOrSignal out1 = null ,
61- IOperationOrSignal eno = null ) : base ( "Add " , eno )
61+ IOperationOrSignal eno = null ) : base ( "Mul " , eno )
6262 {
6363 DisableEno = true ;
6464 Type = type ;
You can’t perform that action at this time.
0 commit comments