|
Message
From: sunyzs@1...
Date: Thu, 14 Aug 2003 04:43:58 +0200
Subject: [oc] vhdl about hdbn module?
1.could you explain the InsertBBit process?
InsertBBit: process (Reset_i, Clk_i)
begin
if Reset_i = '1' then
Q5 <= '0';
elsif rising_edge(Clk_i) then
if ClkEnable_i = '1' then
Q5 <= Q4 or (ZeroString and (not ViolationType));
end if;
end if;
end process InsertBBit;
2.what's the meaning of ViolationType?
thx.
|