04 2023 档案
摘要:一个模块里面有输入的使能信号,但是使能信号的持续时长不一致,会出现使能信号持续时间过长,可能多次触发本模块的功能。时间过短则会不能触发,这种情况要调整本模块的输入时钟,要能采集到使能信号的上升沿。 时间过长的处理思想:模块里预设一个busy信号,忙信号,接收到使能信号,且busy信号为底就是不忙的时
阅读全文
摘要:module float_adder( input clk, input rst_n, input en, input [31:0] aIn, input [31:0] bIn, output reg busy, output reg out_vld, output reg [31:0] out )
阅读全文