|
Message
From: cvs at opencores.org<cvs@o...>
Date: Thu Sep 29 13:16:16 CEST 2005
Subject: [cvs-checkins] MODIFIED: or1k ...
Date: 00/05/09 29:13:16 Modified: or1k/or1ksim/cpu/or1k sprs.c Log: Add missing break; statements Revision Changes Path 1.64 or1k/or1ksim/cpu/or1k/sprs.c http://www.opencores.org/cvsweb.shtml/or1k/or1ksim/cpu/or1k/sprs.c.diff?r1=1.63&r2=1.64 (In the diff below, changes in quantity of whitespace are not shown.) Index: sprs.c =================================================================== RCS file: /cvsroot/nogj/or1k/or1ksim/cpu/or1k/sprs.c,v retrieving revision 1.63 retrieving revision 1.64 diff -u -b -r1.63 -r1.64 --- sprs.c 5 Sep 2005 08:47:39 -0000 1.63 +++ sprs.c 29 Sep 2005 11:16:12 -0000 1.64 @@ -213,8 +213,10 @@ switch (regno) { case SPR_NPC: ret = cpu_state.pc; + break; case SPR_TTCR: ret = spr_read_ttcr(); + break; default: /* Links to GPRS */ if(regno >= 0x0400 && regno < 0x0420)
|