目录 代码 简析 代码 `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] reverse; input [3:0] data; begin reverse = {data[0], data[1], data[2], data[3]}; end endfunc...