library ieee;
use ieee.std_logic_1164.all;
use work.leon_iface.all;
use work.core_config.all;
use work.corelib.all;
use work.peri_mem_comp.all;
-- PREFIX: cco_xxx
package core_comp is
type cco_in is record
memi : memory_in_type;
end record;
type cco_out is record
memo : memory_out_type;
sdo : sdram_out_type;
end record;
component soc_gen
generic (
ARCH_TYPE : cfg_core_types := cfg_core_arm );
port (
clk : in std_logic;
clkn : in std_logic;
rst : in std_logic;
ci : in cco_in;
co : out cco_out
);
end component;
component core
port (
resetn : in std_logic; -- system signals
clk : in std_logic;
pllref : in std_logic;
plllock : out std_logic;
errorn : out std_logic;
address : out std_logic_vector(27 downto 0); -- memory bus
data : inout std_logic_vector(31 downto 0);
ramsn : out std_logic_vector(4 downto 0);
ramoen : out std_logic_vector(4 downto 0);
rwen : inout std_logic_vector(3 downto 0);
romsn : out std_logic_vector(1 downto 0);
iosn : out std_logic;
oen : out std_logic;
writen : inout std_logic;
brdyn : in std_logic;
bexcn : in std_logic;
read : out std_logic;
sdcke : out std_logic_vector ( 1 downto 0);
sdcsn : out std_logic_vector ( 1 downto 0);
sdwen : out std_logic;
sdrasn : out std_logic;
sdcasn : out std_logic;
sddqm : out std_logic_vector ( 3 downto 0);
sdclk : out std_logic;
pio : inout std_logic_vector(15 downto 0);
wdogn : out std_logic;
dsuen : in std_logic;
dsutx : out std_logic;
dsurx : in std_logic;
dsubre : in std_logic;
dsuact : out std_logic;
test : in std_logic
);
end component;
end core_comp;
File /tmp/build_html/vhdl/core/core_config.vhd used by /tmp/build_html/vhdl/core/core_comp.vhd used by /tmp/build_html/vhdl/core/soc_gen.vhd used by /tmp/build_html/vhdl/core/core.vhd |
File /tmp/build_html/vhdl/core/core_comp.vhd used by /tmp/build_html/vhdl/core/soc_gen.vhd used by /tmp/build_html/vhdl/core/core.vhd used by /tmp/build_html/vhdl/tbench/tbench_gen.vhd |
Enum txfsmtype defined in /tmp/build_html/vhdl/sparc/dcom_uart.vhd |
Type memory_in_type defined in /tmp/build_html/vhdl/peripherals/mem/peri_mem_comp.vhd |
Type cco_in defined in /tmp/build_html/vhdl/core/core_comp.vhd |
Type memory_out_type defined in /tmp/build_html/vhdl/peripherals/mem/peri_mem_comp.vhd |
Type sdram_out_type defined in /tmp/build_html/vhdl/peripherals/mem/peri_mem_comp.vhd |
Type cco_out defined in /tmp/build_html/vhdl/core/core_comp.vhd |
Enum cfg_core_types defined in /tmp/build_html/vhdl/core/core_config.vhd |
Enum rdatatype defined in /tmp/build_html/vhdl/sparc/mmu_icache.vhd |
If you have question mail to: Konrad Eisele<eiselekd@web.de>, created: Wed Apr 14 13:07:33 WEDT 2004
;
This is part of the Core distribution