create JAM-File for Xilinx device

  • Thread starter Christoph Grundner
  • Start date
C

Christoph Grundner

Guest
Hi there

i'm currently trying to configure Alteras JAM Player for a Mitsubishi
M16 Controller to program multi vendor device JTAG chains. Input files
are either *.jam (JAM file) or *.jbc (JAM-ByteCode file).
Is there a (preferably free) Xilinx tool to produce either one of
these file types? Where can i download the tool?
 
antti@case2000.com (Antti Lukats) wrote in message news:<80a3aea5.0307040005.6e6ba1ab@posting.google.com>...
impact generates JAM files, well called STAPL but it is the same thing.
there are some problems though most of the files generates will not
work with non-patched JAM player :(

antti
Are there any required patches somewhere for download? Or do i have to
write my own one?
 
Christoph Grundner <christoph.grundner@agfa.com> wrote:
: antti@case2000.com (Antti Lukats) wrote in message news:<80a3aea5.0307040005.6e6ba1ab@posting.google.com>...
:> impact generates JAM files, well called STAPL but it is the same thing.
:> there are some problems though most of the files generates will not
:> work with non-patched JAM player :(
:>
:> antti

: Are there any required patches somewhere for download? Or do i have to
: write my own one?

I needed to remove whitespaces:
--- source.orig/jamexec.c Mon Nov 13 18:58:26 2000
+++ source/jamexec.c Tue Dec 3 22:05:25 2002
@@ -816,6 +816,23 @@
long *long_ptr = NULL;
JAM_RETURN_TYPE status = JAMC_SUCCESS;

+ /* remove all white space */
+ while (statement_buffer[in_index] != JAMC_NULL_CHAR)
+ {
+ if ((!jam_isspace(statement_buffer[in_index])) &&
+ (statement_buffer[in_index] != JAMC_TAB_CHAR) &&
+ (statement_buffer[in_index] != JAMC_RETURN_CHAR) &&
+ (statement_buffer[in_index] != JAMC_NEWLINE_CHAR))
+ {
+ statement_buffer[out_index] = statement_buffer[in_index];
+ ++out_index;
+ }
+ ++in_index;
+ }
+ statement_buffer[out_index] = JAMC_NULL_CHAR;
+ in_index = 0;
+ out_index = 0;
+
while ((status == JAMC_SUCCESS) &&
((ch = statement_buffer[in_index]) != '\0'))
{

--
Uwe Bonnes bon@elektron.ikp.physik.tu-darmstadt.de

Institut fuer Kernphysik Schlossgartenstrasse 9 64289 Darmstadt
--------- Tel. 06151 162516 -------- Fax. 06151 164321 ----------
 

Welcome to EDABoard.com

Sponsor

Back
Top