Here is sample .bat file that I typically use for command
line synthesis ... that bypasses gui entirely. There are lots
of advantages to command line flow ... Entire synthesis
flow is documented ( and can be archived) in text document.
Portability of synthesis flow among workstations/PCs is
ensured - not determined by check box in a nested dialog
box.
Take a look at the developers reference guide in the Xilinx
install path /Xilinx/doc/usenglish/books/docs/dev/dev.pdf.
This document describes all command line options for
various utilities.
---------------------------------------------------------
cd ..
rmdir /s /q synth
mkdir synth
cd synth
xst -ifn ..\scripts\xst.txt -intstyle xflow
ngdbuild %1.edf -p xc3s400-4-pq208 -uc ..\files\%1.ucf
map -k 6 -detail -pr b %1
rem pause
par -ol med -w %1.ncd %1_r%2
copy %1.pcf %1_r%2.pcf
trce -e -o %1_err.twr %1_r%2
trce -v -o %1_ver.twr %1_r%2
rem **************************************************
rem * first make bitgen for rom, then remake for JTAG
rem **************************************************
rem bitgen -w -g UserID:55550%2 %1_r%2 %1_r%2
bitgen -w -g UserID:55550%2 -g DonePipe:yes -g UnusedPin:Pullup %1_r%2
%1_r%2
--
Regards,
John Retta
Owner and Designer
Retta Technical Consulting Inc.
Colorado Based Xilinx Consultant
email :
[email protected]
web :
www.rtc-inc.com
"Sanka Piyaratna" <
[email protected]> wrote in message
news:
[email protected]..
> Hi,
>
> I am wondering if there is anyone who has worked out a way to use ISE 8.1
> projects with Makefiles to compile FPGA images. I am actually wondering if
> it would be possible to automatically generate a Makefile from the project
> file.
>
> Thank You,
>
> Sanka.