题解 | #使用函数实现数据大小端转换#
使用函数实现数据大小端转换
https://www.nowcoder.com/practice/74c0c19ad0c444959c436a049647a93c
`timescale 1ns/1ns module function_mod( input [3:0]a, input [3:0]b, output [3:0]c, output [3:0]d ); assign c = neg(a); assign d = neg(b); function [3:0] neg; input [3:0] a; neg = {a[0],a[1],a[2],a[3]}; endfunction endmodule