大家好,我想问一下关于VHDL方面的问题,程序如下所示: process(clk) begin if(clk'event and clk='1') then if(tout=777777) then --计数1000000次,输出翻转一次 tout=0; clk10hz<=not clk10hz; else tout>=tout+1; end if; end if; end process; 在上面的注释程序当中,如果tout=777777的话,为什么说是计数1000000次啊,不是777778次吗?对于这个问题,我一直不解,望高手帮忙解答一下,谢谢. |