|
Message
From: cvs at opencores.org<cvs@o...>
Date: Sat Dec 22 17:24:16 CET 2007
Subject: [cvs-checkins] MODIFIED: jop ...
Date: 00/07/12 22:17:24 Modified: jop/java/tools/src/com/jopdesign/tools JopInstr.java Log: symbolic bytecode Revision Changes Path 1.14 jop/java/tools/src/com/jopdesign/tools/JopInstr.java http://www.opencores.org/cvsweb.shtml/jop/java/tools/src/com/jopdesign/tools/JopInstr.java.diff?r1=1.13&r2=1.14 (In the diff below, changes in quantity of whitespace are not shown.) Index: JopInstr.java =================================================================== RCS file: /cvsroot/martin/jop/java/tools/src/com/jopdesign/tools/JopInstr.java,v retrieving revision 1.13 retrieving revision 1.14 diff -u -b -r1.13 -r1.14 --- JopInstr.java 4 Aug 2007 20:01:35 -0000 1.13 +++ JopInstr.java 22 Dec 2007 16:24:16 -0000 1.14 @@ -409,6 +409,13 @@ public static void main(String[] args) { + for (int i=0; i<256/8; ++i) { + System.out.print("\t\t\t"); + for (int j=0; j<8; ++j) { + System.out.print(name(i*8+j)+", "); + } + System.out.println(); + } for (int i=0; i<256; ++i) { System.out.print(i+"; "); System.out.print(JopInstr.name(i)+"; ");
|
 |