|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
我在看书的时候(CPLD/FPGA应用开发技术工程实践 P-227),有如下字段:
------------
architecture dif of dff is
begin
process(clk1,clk2,d1,d2)
begin
if(clk1`event and clk=`1`)then
q1<=d1;
end if;
if(clk2`event and clk2=`1`)then
q2<=d2;
end if;
end process;
end dif;
------------
以上代码书上说是不允许的,因为它对2个寄存器进行了描述。但它又说可以引申多个寄存器,以下的代码是允许的:
--------
architecture dif of dff is
begin
process(clk1,clk2,d1,d2)
begin
if(clk1`event and clk=`1`)then
q1<=d1;
q2<=d1+d2;
end if;
end process;
end dff;
----------------
请问什么是寄存器描述,需要什么要素?引申寄存器就是说使用到寄存器,是吗? |
|