Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion TiaCodegen/Commands/Comparisons/InRangeCall.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public InRangeCall(
DisableEno = false;
Interface["min"] = new IOperationOrSignalDirectionWrapper(min, Direction.Input);
Interface["in"] = new IOperationOrSignalDirectionWrapper(@in, Direction.Input);
Interface["max"] = new IOperationOrSignalDirectionWrapper(max, Direction.Output);
Interface["max"] = new IOperationOrSignalDirectionWrapper(max, Direction.Input);
Interface["out"] = new IOperationOrSignalDirectionWrapper(@out, Direction.Output);

Children.AddRange(Interface.Values.Where(x => x.OperationOrSignal != null).Select(x => x.OperationOrSignal));
Expand Down
2 changes: 1 addition & 1 deletion TiaCodegen/Commands/Comparisons/OutRangeCall.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public OutRangeCall(
DisableEno = false;
Interface["min"] = new IOperationOrSignalDirectionWrapper(min, Direction.Input);
Interface["in"] = new IOperationOrSignalDirectionWrapper(@in, Direction.Input);
Interface["max"] = new IOperationOrSignalDirectionWrapper(max, Direction.Output);
Interface["max"] = new IOperationOrSignalDirectionWrapper(max, Direction.Input);
Interface["out"] = new IOperationOrSignalDirectionWrapper(@out, Direction.Output);

Children.AddRange(Interface.Values.Where(x => x.OperationOrSignal != null).Select(x => x.OperationOrSignal));
Expand Down