题解 | 求两个数的差值

`timescale 1ns/1ns
module data_minus(
	input clk,
	input rst_n,
	input [7:0]a,
	input [7:0]b,

	output  reg [8:0]c
);

    always @(posedge clk or negedge rst_n) begin
        if (~rst_n) begin
            c <= 0;
        end else if (a>b) begin
            c <= a - b;            
        end else if (a<=b) begin
            c <= b - a;            
        end
    end
endmodule

全部评论

相关推荐

不愿透露姓名的神秘牛友
07-22 11:33
点赞 评论 收藏
分享
评论
1
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务