回复 7# 菜鸟要飞
问你一个问题好吗?我看8051定时器的代码时看到这段代码,然后我有点看不懂了!!!
always@(t2ex_ff1 or t2exff) begin : t2ex_fall_proc
t2ex_fall = 1'b0 ;
if (t2exff == 1'b0 & t2ex_ff1 ==1'b1)
begin
t2ex_fall = 1'b1 ;
end
else
begin
t2ex_fall = 1'b0 ;
end
end
我想知道,这个t2ex是包括 tex2_fall 和 t2exff 吗? |