From 175656e7de70a44eef1ea8385fa23d28b1e15cbd Mon Sep 17 00:00:00 2001 From: adam Date: Sun, 16 Nov 2008 11:06:05 +0100 Subject: [PATCH] move main.ut into Makefile --- Makefile | 22 ++++++++++++++++++++++ src/edu/berkeley/fleet/fpga/main.ut | 21 --------------------- 2 files changed, 22 insertions(+), 21 deletions(-) delete mode 100644 src/edu/berkeley/fleet/fpga/main.ut diff --git a/Makefile b/Makefile index 9e8b284..5853c44 100644 --- a/Makefile +++ b/Makefile @@ -144,6 +144,28 @@ synth: echo -n " -slice_utilization_ratio_maxmargin 5" >> build/fpga/main.xst echo >> build/fpga/main.xst + rm -f build/fpga/main.ut + echo '-w' >> build/fpga/main.ut + echo '-g CclkPin:PULLUP' >> build/fpga/main.ut + echo '-g TdoPin:PULLNONE' >> build/fpga/main.ut + echo '-g M1Pin:PULLDOWN' >> build/fpga/main.ut + echo '-g DonePin:PULLUP' >> build/fpga/main.ut + echo '-g DriveDone:No' >> build/fpga/main.ut + echo '-g StartUpClk:JTAGCLK' >> build/fpga/main.ut + echo '-g DONE_cycle:4' >> build/fpga/main.ut + echo '-g GTS_cycle:5' >> build/fpga/main.ut + echo '-g M0Pin:PULLUP' >> build/fpga/main.ut + echo '-g M2Pin:PULLUP' >> build/fpga/main.ut + echo '-g ProgPin:PULLUP' >> build/fpga/main.ut + echo '-g TckPin:PULLUP' >> build/fpga/main.ut + echo '-g TdiPin:PULLUP' >> build/fpga/main.ut + echo '-g TmsPin:PULLUP' >> build/fpga/main.ut + echo '-g DonePipe:No' >> build/fpga/main.ut + echo '-g GWE_cycle:6' >> build/fpga/main.ut + echo '-g LCK_cycle:NoWait' >> build/fpga/main.ut + echo '-g Security:NONE' >> build/fpga/main.ut + echo '-g Persist:No' >> build/fpga/main.ut + $(xilinx_ise)xst -intstyle xflow -ifn main.xst -ofn main.syr < main.xst $(xilinx_ise)ngdbuild -aul -intstyle xflow -dd _ngo -nt timestamp -uc main.ucf -p $(device) main.ngc main.ngd $(xilinx_ise)map -cm area -intstyle xflow -p $(device) -pr b -ol high -o main_map.ncd main.ngd main.pcf diff --git a/src/edu/berkeley/fleet/fpga/main.ut b/src/edu/berkeley/fleet/fpga/main.ut deleted file mode 100644 index 4641f0d..0000000 --- a/src/edu/berkeley/fleet/fpga/main.ut +++ /dev/null @@ -1,21 +0,0 @@ --w --g CclkPin:PULLUP --g TdoPin:PULLNONE --g M1Pin:PULLDOWN --g DonePin:PULLUP --g DriveDone:No --g StartUpClk:JTAGCLK --g DONE_cycle:4 --g GTS_cycle:5 --g M0Pin:PULLUP --g M2Pin:PULLUP --g ProgPin:PULLUP --g TckPin:PULLUP --g TdiPin:PULLUP --g TmsPin:PULLUP --g DonePipe:No --g GWE_cycle:6 --g LCK_cycle:NoWait --g Security:NONE -#-m --g Persist:No -- 1.7.10.4