Altera_Forum
Honored Contributor
15 years agoError: quartus_map ended unexpectedly
Hi there,
I'm running Quartus II 10sp1 on ArchLinux. . When I'm trying to compileLIBRARY IEEE;
USE IEEE.STD_LOGIC_1164.ALL;
ENTITY my_and2 is
PORT(A, B: IN STD_LOGIC;
C: OUT STD_LOGIC);
END my_and2;
ARCHITECTURE behav of my_and2 IS
BEGIN
PROCESS(A, B)
BEGIN
C <= A AND B;
END PROCESS;
END behav; I've got this error --- Quote Start --- Error: Current module quartus_map ended unexpectedly --- Quote End --- Here is full log --- Quote Start --- Info: ******************************************************************* Info: Running Quartus II Analysis & Synthesis Info: Version 10.0 Build 262 08/18/2010 Service Pack 1 SJ Web Edition Info: Processing started: Tue Sep 21 18:00:11 2010 Info: Version 10.0 Build 262 08/18/2010 Service Pack 1 SJ Web Edition Info: Processing started: Tue Sep 21 18:00:11 2010 Info: Command: quartus_map --read_settings_files=on --write_settings_files=off my_and2 -c my_and2 Info: Found 2 design units, including 1 entities, in source file my_and2.vhd Info: Found design unit 1: my_and2-behav Info: Found entity 1: my_and2 Info: Found design unit 1: my_and2-behav Info: Found entity 1: my_and2 Info: Elaborating entity "my_and2" for the top level hierarchy Error: Current module quartus_map ended unexpectedly --- Quote End --- Do you have any suggestions how to fix this error?