【发布时间】:2019-01-07 14:33:37
【问题描述】:
语句不可合成,因为它在 NOT(clock-edge) 条件下不保持其值
尝试在 u_txack 边沿重置 =>0 信号 u_txreq 并在 CLK 边沿设置 =>1
process (CLK, u_reset_n, u_txack)
begin
if (u_reset_n='0')then
u_txreq<='0';
elsif rising_edge(CLK) then
u_txreq<='1';
elsif rising_edge(u_txack) then
u_txreq<='0';
end if;
end process;
【问题讨论】:
标签: vhdl clock sequential synthesis