File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
TiaCodegen/Commands/Comparisons Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ public InRangeCall(
1717 DisableEno = false ;
1818 Interface [ "min" ] = new IOperationOrSignalDirectionWrapper ( min , Direction . Input ) ;
1919 Interface [ "in" ] = new IOperationOrSignalDirectionWrapper ( @in , Direction . Input ) ;
20- Interface [ "max" ] = new IOperationOrSignalDirectionWrapper ( max , Direction . Output ) ;
20+ Interface [ "max" ] = new IOperationOrSignalDirectionWrapper ( max , Direction . Input ) ;
2121 Interface [ "out" ] = new IOperationOrSignalDirectionWrapper ( @out , Direction . Output ) ;
2222
2323 Children . AddRange ( Interface . Values . Where ( x => x . OperationOrSignal != null ) . Select ( x => x . OperationOrSignal ) ) ;
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ public OutRangeCall(
1717 DisableEno = false ;
1818 Interface [ "min" ] = new IOperationOrSignalDirectionWrapper ( min , Direction . Input ) ;
1919 Interface [ "in" ] = new IOperationOrSignalDirectionWrapper ( @in , Direction . Input ) ;
20- Interface [ "max" ] = new IOperationOrSignalDirectionWrapper ( max , Direction . Output ) ;
20+ Interface [ "max" ] = new IOperationOrSignalDirectionWrapper ( max , Direction . Input ) ;
2121 Interface [ "out" ] = new IOperationOrSignalDirectionWrapper ( @out , Direction . Output ) ;
2222
2323 Children . AddRange ( Interface . Values . Where ( x => x . OperationOrSignal != null ) . Select ( x => x . OperationOrSignal ) ) ;
You can’t perform that action at this time.
0 commit comments