题解 | #多功能数据处理器#

多功能数据处理器

https://www.nowcoder.com/practice/e009ab1a7a4c46fb9042c09c77ee27b8

多功能数据处理器
本题唯一的难点就时对有符号数的处理问题。
有符号数的最高位表示正负,1表示正数,0表示负数。
还值得注意到是c位宽和a,b不同,所以需要采用拼接的方式来处理。
具体代码如下
`timescale 1ns/1ns
module data_select(
	input clk,
	input rst_n,
	input signed[7:0]a,
	input signed[7:0]b,
	input [1:0]select,
	output reg signed [8:0]c
);
always @(posedge clk or negedge rst_n) begin
	if(!rst_n) begin c <= 9'b0; end
	else begin
		case(select)
		0: c <= {a[7],a};
		1: c <= {b[7],b};
		2: c <= {a[7],a} + {b[7],b};
		3: c <= {a[7],a} - {b[7],b};
		default: c <= 9'b0;
		endcase
	end
end
endmodule


全部评论

相关推荐

点赞 收藏 评论
分享
牛客网
牛客企业服务