微波EDA网,见证研发工程师的成长!
首页 > 研发问答 > 嵌入式设计讨论 > FPGA,CPLD和ASIC > 关于VHDL进程里的变量值问题

关于VHDL进程里的变量值问题

时间:10-02 整理:3721RD 点击:

  1. process(tmp_ps2clk)
  2.         begin
  3.                 if tmp_ps2clk'event and tmp_ps2clk='0' then
  4.                         cnt<=cnt+1;
  5.                         if  cnt = 32 then
  6.                                 cnt<=0;
  7.                         end if;
  8.                 end if;
  9.         end process;
  10.        
  11.         process(tmp_ps2clk,tmp_ps2dat,cnt)
  12.         begin
  13.                 if tmp_ps2clk'event and tmp_ps2clk='0' then
  14.                         if cnt<11 then

复制代码

请问第二个进程里的cnt<11的那个cnt与第一个进程里的cnt<cnt+1相对应的是哪个cnt?cnt+1里的那个cnt还是加一之后新的cnt?

Copyright © 2017-2020 微波EDA网 版权所有

网站地图

Top