|
Message
From: cvs at opencores.org<cvs@o...>
Date: Sat Apr 14 19:49:09 CEST 2007
Subject: [cvs-checkins] MODIFIED: jop ...
Date: 00/07/04 14:19:49 Modified: jop/java/target/src/common/com/jopdesign/sys Const.java Log: Constants for exceptions (HW and SW) Revision Changes Path 1.18 jop/java/target/src/common/com/jopdesign/sys/Const.java http://www.opencores.org/cvsweb.shtml/jop/java/target/src/common/com/jopdesign/sys/Const.java.diff?r1=1.17&r2=1.18 (In the diff below, changes in quantity of whitespace are not shown.) Index: Const.java =================================================================== RCS file: /cvsroot/martin/jop/java/target/src/common/com/jopdesign/sys/Const.java,v retrieving revision 1.17 retrieving revision 1.18 diff -u -b -r1.17 -r1.18 --- Const.java 17 Apr 2006 15:34:46 -0000 1.17 +++ Const.java 14 Apr 2007 17:49:09 -0000 1.18 @@ -14,6 +14,13 @@ */ public class Const { + // Exception numbers - 1-7 reserved for HW generated exceptions + public static final int EXC_SPOV = 1; + public static final int EXC_NP = 2; + public static final int EXC_AB = 3; + + public static final int EXC_DIVZ = 8; + // use neagitve base address for fast constant load // with bipush public static final int IO_BASE = 0xffffff80;
|