题解 | #求两个数的差值#
求两个数的差值
http://www.nowcoder.com/practice/de8e9138214647f1826e99043a1b7990
目录
代码
题目比较简单,直接上代码:
`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 <= 9'b0;
end
else
c <= a>b? (a-b): (b-a);
end
endmodule
简析
无
Verilog篇题解 文章被收录于专栏
本人对牛客网verilog篇题目一些理解