"INTERNAL_ERROR:Xst:cmain.c:3004:1.63 - To resolve this error, please consult the Answers Database and other online resources at http://support.xilinx.com";
"FATAL_ERROR:Xst:Portability/export/Port_Main.h:116:1.9 - This application has discovered an exceptional condition from which it cannot recover. Process will terminate. To resolve this error, please consult the Answers Database and other online resources at http://support.xilinx.com";
このアンサー レコードで説明されている問題の多くは、XST 5.1i で修正されています。
ソリューション
1
process 文で宣言された定数が原因で、このエラーが発生することがあります。 この問題を回避するには、process 文の外で定数を宣言します。
例 :
: : process (clk, reset) constant static_value : std_logic_vector (2 downto 0) := "001"; begin : :
上記のコードを次のように変更します。 <architecture_declaration> : constant static_value : std_logic_vector (2 downto 0) := "001"; begin : : process (clk, reset) begin : :