|
Message
From: cvs at opencores.org<cvs@o...>
Date: Tue Dec 18 01:29:10 CET 2007
Subject: [cvs-checkins] MODIFIED: jop ...
Date: 00/07/12 18:01:29 Modified: jop/java/target/src/common/com/jopdesign/sys JVMHelp.java Log: timestamp Revision Changes Path 1.28 jop/java/target/src/common/com/jopdesign/sys/JVMHelp.java http://www.opencores.org/cvsweb.shtml/jop/java/target/src/common/com/jopdesign/sys/JVMHelp.java.diff?r1=1.27&r2=1.28 (In the diff below, changes in quantity of whitespace are not shown.) Index: JVMHelp.java =================================================================== RCS file: /cvsroot/martin/jop/java/target/src/common/com/jopdesign/sys/JVMHelp.java,v retrieving revision 1.27 retrieving revision 1.28 diff -u -b -r1.27 -r1.28 --- JVMHelp.java 11 Dec 2007 14:56:48 -0000 1.27 +++ JVMHelp.java 18 Dec 2007 00:29:10 -0000 1.28 @@ -20,11 +20,20 @@ } } + /** + * time stamp variable for measuerments + */ + public static int ts; + // // DON'T change order of first functions!!! // interrupt gets called from jvm.asm // - public static void interrupt() { + static void interrupt() { + + // take a time stamp + ts = Native.rdMem(Const.IO_CNT); + int nr = Native.rd(Const.IO_INTNR); // wr('!'); // wr('0'+nr);
|