|
Message
From: cvs at opencores.org<cvs@o...>
Date: Sat Apr 14 20:38:12 CEST 2007
Subject: [cvs-checkins] MODIFIED: jop ...
Date: 00/07/04 14:20:38 Modified: jop/vhdl/scio sc_cnt.vhd Log: Hardware implementation of iaload and iastore Revision Changes Path 1.5 jop/vhdl/scio/sc_cnt.vhd http://www.opencores.org/cvsweb.shtml/jop/vhdl/scio/sc_cnt.vhd.diff?r1=1.4&r2=1.5 (In the diff below, changes in quantity of whitespace are not shown.) Index: sc_cnt.vhd =================================================================== RCS file: /cvsroot/martin/jop/vhdl/scio/sc_cnt.vhd,v retrieving revision 1.4 retrieving revision 1.5 diff -u -b -r1.4 -r1.5 --- sc_cnt.vhd 18 Mar 2007 01:46:47 -0000 1.4 +++ sc_cnt.vhd 14 Apr 2007 18:38:11 -0000 1.5 @@ -200,7 +200,15 @@ irq_in.exc_int <= '0'; if exc_req.spov='1' then - exc_type(0) <= '1'; + exc_type(2 downto 0) <= EXC_SPOV; + irq_in.exc_int <= '1'; + end if; + if exc_req.np='1' then + exc_type(2 downto 0) <= EXC_NP; + irq_in.exc_int <= '1'; + end if; + if exc_req.ab='1' then + exc_type(2 downto 0) <= EXC_AB; irq_in.exc_int <= '1'; end if;
|