|
Message
From: cvs at opencores.org<cvs@o...>
Date: Fri Dec 29 15:13:06 CET 2006
Subject: [cvs-checkins] MODIFIED: jop ...
Date: 00/06/12 29:15:13 Modified: jop/vhdl/core fetch.vhd Log: use pc_width for pc_inc value Revision Changes Path 1.6 jop/vhdl/core/fetch.vhd http://www.opencores.org/cvsweb.shtml/jop/vhdl/core/fetch.vhd.diff?r1=1.5&r2=1.6 (In the diff below, changes in quantity of whitespace are not shown.) Index: fetch.vhd =================================================================== RCS file: /cvsroot/martin/jop/vhdl/core/fetch.vhd,v retrieving revision 1.5 retrieving revision 1.6 diff -u -b -r1.5 -r1.6 --- fetch.vhd 29 Dec 2006 13:48:04 -0000 1.5 +++ fetch.vhd 29 Dec 2006 14:13:05 -0000 1.6 @@ -143,7 +143,7 @@ end process; -- bsy is too late to register pcwait and bsy - pc_inc <= "000000000" & not (pcwait and bsy); + pc_inc <= std_logic_vector(to_unsigned(0, pc_width-1)) & not (pcwait and bsy); process(jfetch, br, jpaddr, brdly, pc, pc_inc) begin
|
 |