统计次大值出现次数

该博客介绍了如何使用Verilog设计一个模块,该模块接收10位随机数输入,并输出曾经出现的次大值以及其出现的次数。在testbench中验证了该设计,并提供了仿真波形结果。
摘要由CSDN通过智能技术生成

题目:一个模块,input有clk,rstn,10bit随机数,output为曾经出现过的次大值以及次大值出现的次数。

 

design:

module comp_secmax(
input clk,
input rstn,
input [9:0]data,
output reg [9:0] sec_max,
output reg [9:0] cnt_sec_max);

reg [9:0] data_in;
reg [9:0] max;
reg [9:0] cnt_max;

always @(posedge clk or negedge rstn)begin
if(!rstn)
	data_in<=10'd0;
else
	data_in<=data;
end

always @(posedge clk or negedge rstn)begin
if(!rstn)
	max<=10'd0;
else if(data_in>max)
	max<=data_in;
end

always @(posedge clk or negedge rstn)begin
if(!rstn)
	cnt_max<=10'd0;
else if(data_in>max)
	cnt_max<=10'd1;
else if(data_in==max)
	cnt_max<=cnt_max+1;
end

always @(posedge clk or negedge rstn)begin
if(!rstn)
	sec_max<=10'd0;
else if(data_in>max)
	sec_max<=max;
else if(data_in==max)
	sec_max<=sec_max;
else i
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值