|
Message
From: cvs at opencores.org<cvs@o...>
Date: Sun Nov 26 13:53:28 CET 2006
Subject: [cvs-checkins] MODIFIED: t48 ...
Date: 00/06/11 26:13:53 Modified: t48/rtl/vhdl/system t49_rom-struct-a.vhd t48_rom-struct-a.vhd Log: fix entity port names Revision Changes Path 1.3 t48/rtl/vhdl/system/t49_rom-struct-a.vhd http://www.opencores.org/cvsweb.shtml/t48/rtl/vhdl/system/t49_rom-struct-a.vhd.diff?r1=1.2&r2=1.3 (In the diff below, changes in quantity of whitespace are not shown.) Index: t49_rom-struct-a.vhd =================================================================== RCS file: /cvsroot/arniml/t48/rtl/vhdl/system/t49_rom-struct-a.vhd,v retrieving revision 1.2 retrieving revision 1.3 diff -u -b -r1.2 -r1.3 --- t49_rom-struct-a.vhd 26 Nov 2006 11:58:28 -0000 1.2 +++ t49_rom-struct-a.vhd 26 Nov 2006 12:53:28 -0000 1.3 @@ -2,7 +2,7 @@ -- -- T8x49 ROM -- --- $Id: t49_rom-struct-a.vhd,v 1.2 2006/11/26 11:58:28 arniml Exp $ +-- $Id: t49_rom-struct-a.vhd,v 1.3 2006/11/26 12:53:28 arniml Exp $ -- -- Copyright (c) 2006 Arnim Laeuger (arniml@o...) -- @@ -57,9 +57,9 @@ rom_b : rom_t49 port map ( - Clk => ck_i, - A => addr_i, - D => data_o + Clk => clk_i, + A => rom_addr_i, + D => rom_data_o ); end struct; @@ -69,6 +69,9 @@ -- File History: -- -- $Log: t49_rom-struct-a.vhd,v $ +-- Revision 1.3 2006/11/26 12:53:28 arniml +-- fix entity port names +-- -- Revision 1.2 2006/11/26 11:58:28 arniml -- fix component name -- 1.3 t48/rtl/vhdl/system/t48_rom-struct-a.vhd http://www.opencores.org/cvsweb.shtml/t48/rtl/vhdl/system/t48_rom-struct-a.vhd.diff?r1=1.2&r2=1.3 (In the diff below, changes in quantity of whitespace are not shown.) Index: t48_rom-struct-a.vhd =================================================================== RCS file: /cvsroot/arniml/t48/rtl/vhdl/system/t48_rom-struct-a.vhd,v retrieving revision 1.2 retrieving revision 1.3 diff -u -b -r1.2 -r1.3 --- t48_rom-struct-a.vhd 26 Nov 2006 11:58:28 -0000 1.2 +++ t48_rom-struct-a.vhd 26 Nov 2006 12:53:28 -0000 1.3 @@ -2,7 +2,7 @@ -- -- T8x48 ROM -- --- $Id: t48_rom-struct-a.vhd,v 1.2 2006/11/26 11:58:28 arniml Exp $ +-- $Id: t48_rom-struct-a.vhd,v 1.3 2006/11/26 12:53:28 arniml Exp $ -- -- Copyright (c) 2006 Arnim Laeuger (arniml@o...) -- @@ -57,9 +57,9 @@ rom_b : rom_t48 port map ( - Clk => ck_i, - A => addr_i, - D => data_o + Clk => clk_i, + A => rom_addr_i, + D => rom_data_o ); end struct; @@ -69,6 +69,9 @@ -- File History: -- -- $Log: t48_rom-struct-a.vhd,v $ +-- Revision 1.3 2006/11/26 12:53:28 arniml +-- fix entity port names +--
-- Revision 1.2 2006/11/26 11:58:28 arniml
-- fix component name
--
|
 |