git-svn-id: http://moon:8086/svn/vhdl/trunk@1414 cc03376c-175c-47c8-b038-4cd826a8556b
20 lines
414 B
VHDL
20 lines
414 B
VHDL
library IEEE;
|
|
USE IEEE.STD_LOGIC_1164.ALL;
|
|
USE IEEE.NUMERIC_STD.ALL;
|
|
|
|
configuration cpu_irom of cpu_embedded is
|
|
for rtl
|
|
for inst_irom : irom
|
|
use entity work.irom(loadable);
|
|
end for;
|
|
end for;
|
|
end configuration cpu_irom;
|
|
|
|
configuration system_xrom of systest is
|
|
for behavior
|
|
for inst_xrom : xrom
|
|
use entity work.xrom(loadable);
|
|
end for;
|
|
end for;
|
|
end configuration system_xrom;
|