Quartus® II 軟體僅支援一個 VHDL 等待程式中的對帳單。其他 VHDL 等待架構(例如等待聲明或具有多個等待聲明的程式)無法進行綜合處理。
舉例來說,Quartus II 整合式合成支援下列等待,直到語法:
architecture dff_arch of ls_dff is
begin
output: process begin
wait until (CLK'event and CLK='1');
Q Qbar end process output;
end dff_arch;
軟體不支援下列類型的等待聲明,並在合成期間產生錯誤:
process --Unsupported process declaration
begin
CLK wait for 20 ns;
CLK wait for 12 ns;
end process;
output: process begin --Unsupported process declaration
wait until (CLK'event and CLK='1');
Q Qbar
wait until (CLK'event and CLK='0');
Q Qbar end process output;