Altera_Forum
Honored Contributor
20 years agoComponent Editor Error
When I try to add a simple file like the below in Component Editor it fails.
????????????? It happens for all file, more comleks than this eksample to. <div class='quotetop'>QUOTE </div> --- Quote Start --- Error: command "quartus_map --generate_hdl_interface=E:/bjornar/workspace/altera/spectrometer/ce_temp_directory/demo.vhd ce_temp_directory/ce_temp_quartus_project" returned 3 Error: Quartus II Analysis & Synthesis was unsuccessful. 1 error, 0 warnings Error: Processing ended: Wed Feb 08 21:25:04 2006 Error: Elapsed time: 00:00:03 Error: E:/bjornar/workspace/altera/spectrometer/ce_temp_directory/demo.vhd.xml does not exist[/b] --- Quote End ---library ieee, std;
use ieee.std_logic_1164.all, ieee.numeric_std.all, std.textio.all;
entity demo is
port
(
-- Avalon interface
clock : in std_logic;
reset_n : in std_logic;
chipselect : in std_logic;
address : in std_logic_vector(31 downto 0);
write : in std_logic;
write_data : in std_logic_vector(31 downto 0);
read : in std_logic;
read_data : out std_logic_vector(31 downto 0);
irq : out std_logic;
);
end demo;
architecture behavior of demo is
begin
end architecture;