`timescale 1ns/1ns module function_mod( input clk, input rst_n, input [3:0]a, input [3:0]b, output [3:0]c, output [3:0]d ); function [3:0]switch; input [3:0]data; integer i; for(i=0;i<4;i=i+1)begin switch[i]=data[3-i]; end endfunction assign c=switch(a); assign d=switch(b); endmodule