|
Message
From: cvs at opencores.org<cvs@o...>
Date: Thu May 22 14:22:36 CEST 2008
Subject: [cvs-checkins] MODIFIED: jop ...
Date: 00/08/05 22:14:22 Modified: jop/java/pc/src/udp Flash.java Log: ACEX target removed (we use compressed bitstreams for the Cyclone in BG) Revision Changes Path 1.5 jop/java/pc/src/udp/Flash.java http://www.opencores.org/cvsweb.shtml/jop/java/pc/src/udp/Flash.java.diff?r1=1.4&r2=1.5 (In the diff below, changes in quantity of whitespace are not shown.) Index: Flash.java =================================================================== RCS file: /cvsroot/martin/jop/java/pc/src/udp/Flash.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -b -r1.4 -r1.5 --- Flash.java 24 Feb 2008 17:18:39 -0000 1.4 +++ Flash.java 22 May 2008 12:22:36 -0000 1.5 @@ -40,6 +40,10 @@ * 0x50000 : CYC config * 0x60000 : ACX, CYC config * 0x70000 : ACX, CYC config +* +* Changelog: +* 2008-05-22 ACEX configuration disabled as we use a compressed bitstream for +* the Cyclone and size detection does not work. */ package udp; import java.io.*; @@ -113,7 +117,8 @@ } else if (s.equals(".ttf")) { isTtf = true; // TODO: should be changed to an option - start= START_ACX_TTF; // assume a file for Jopcore (ACEX) +// start= START_ACX_TTF; // assume a file for Jopcore (ACEX) + start = START_CYC_TTF; } else { System.out.println("wrong file type: '"+s+"'"); System.exit(-1); @@ -154,9 +159,9 @@ } in.close(); - if (len>MAX_ACEX) { // file is big, so it must be for Cyclone - start= START_CYC_TTF; // change start address - } +// if (len>MAX_ACEX) { // file is big, so it must be for Cyclone +// start= START_CYC_TTF; // change start address +// } } else { // 'binary' file
|
 |