|
Message
From: cvs at opencores.org<cvs@o...>
Date: Fri Jun 1 19:13:27 CEST 2007
Subject: [cvs-checkins] MODIFIED: jop ...
Date: 00/07/06 01:19:13 Modified: jop/vhdl/scio scio_lego.vhd Log: no message Revision Changes Path 1.6 jop/vhdl/scio/scio_lego.vhd http://www.opencores.org/cvsweb.shtml/jop/vhdl/scio/scio_lego.vhd.diff?r1=1.5&r2=1.6 (In the diff below, changes in quantity of whitespace are not shown.) Index: scio_lego.vhd =================================================================== RCS file: /cvsroot/9914pich/jop/vhdl/scio/scio_lego.vhd,v retrieving revision 1.5 retrieving revision 1.6 diff -u -b -r1.5 -r1.6 --- scio_lego.vhd 21 May 2007 19:55:15 -0000 1.5 +++ scio_lego.vhd 1 Jun 2007 17:13:27 -0000 1.6 @@ -54,6 +54,10 @@ 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 -- slightly abused in this design @@ -161,9 +165,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, @@ -179,6 +184,9 @@ irq_in => irq_in, exc_req => exc_req, + sync_out => sync_out, + sync_in => sync_in, + wd => wd );
|
 |