Do you have a question? Post it now! No Registration Necessary
Subject
- Posted on
create JAM-File for Xilinx device
- 07-03-2003
- Christoph Grundner
July 3, 2003, 1:27 pm

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?
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?

Re: create JAM-File for Xilinx device
: snipped-for-privacy@case2000.com (Antti Lukats) wrote in message
:> 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]) != ''))
{
:> 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]) != ''))
{
--
Uwe Bonnes snipped-for-privacy@elektron.ikp.physik.tu-darmstadt.de
Institut fuer Kernphysik Schlossgartenstrasse 9 64289 Darmstadt
Uwe Bonnes snipped-for-privacy@elektron.ikp.physik.tu-darmstadt.de
Institut fuer Kernphysik Schlossgartenstrasse 9 64289 Darmstadt
We've slightly trimmed the long signature. Click to see the full one.
Site Timeline
- » Spartan-3 availability
- — Next thread in » Field-Programmable Gate Arrays
-
- » RE:can you please post a summary of your findings to the group?
- — Previous thread in » Field-Programmable Gate Arrays
-
- » Communist Chinese Military Companies
- — Newest thread in » Field-Programmable Gate Arrays
-
- » Gowin - This Just Got Real
- — Last Updated thread in » Field-Programmable Gate Arrays
-
- » GMR-R-Kopf aus Festplatten
- — The site's Newest Thread. Posted in » Electronics (German)
-
- » OT: "We can stay retarded longer than they can stay solvent.?
- — The site's Last Updated Thread. Posted in » Electronics Design
-