|
Message
From: cvs at opencores.org<cvs@o...>
Date: Fri Jun 1 18:45:40 CEST 2007
Subject: [cvs-checkins] MODIFIED: jop ...
Date: 00/07/06 01:18:45 Modified: jop/vhdl/scio scio_bg.vhd Log: no message Revision Changes Path 1.5 jop/vhdl/scio/scio_bg.vhd http://www.opencores.org/cvsweb.shtml/jop/vhdl/scio/scio_bg.vhd.diff?r1=1.4&r2=1.5 (In the diff below, changes in quantity of whitespace are not shown.) Index: scio_bg.vhd =================================================================== RCS file: /cvsroot/9914pich/jop/vhdl/scio/scio_bg.vhd,v retrieving revision 1.4 retrieving revision 1.5 diff -u -b -r1.4 -r1.5 --- scio_bg.vhd 28 Mar 2007 12:35:19 -0000 1.4 +++ scio_bg.vhd 1 Jun 2007 16:45:39 -0000 1.5 @@ -413,6 +413,11 @@ irq_in : out irq_in_type; exc_req : in exception_type; +-- CMP + + sync_out : in sync_out_type := NO_SYNC; + sync_in : out sync_in_type; + -- serial interface txd : out std_logic; @@ -506,9 +511,10 @@ end if; end process; - cmp_cnt: entity work.sc_cnt generic map ( + cmp_sys: entity work.sc_sys generic map ( addr_bits => SLAVE_ADDR_BITS, - clk_freq => clk_freq + clk_freq => clk_freq, + cpu_id => 0 ) port map( clk => clk, @@ -524,6 +530,9 @@ irq_in => irq_in, exc_req => exc_req, + sync_out => sync_out, + sync_in => sync_in, + wd => wd );
|
 |