-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make sdmapper.jed via ISE 14.7 docker image
- Loading branch information
1 parent
4e447f9
commit d9f3e59
Showing
3 changed files
with
47 additions
and
17,874 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
|
||
DESIGN = sdmapper | ||
DEVICE = XC95144XL-10-TQ100 | ||
UCF_FILE = src/pinout_final.ucf | ||
|
||
# Make all runs to place & route | ||
all : bitstream | ||
|
||
# bitstream : Creates device bitstream | ||
bitstream : ${DESIGN}.jed | ||
|
||
# translate: Stops after full design elaboration for analysis and floorplanning prior to place and route step | ||
translate : ${DESIGN}.ngd | ||
|
||
# Following executes the ISE run | ||
|
||
# Produces: .lso .ngc .ngr .srp *_xst.xrpt _xmsgs/ | ||
${DESIGN}.ngc: ${DESIGN}.xst | ||
xst -intstyle ise -ifn $< | ||
|
||
# Produces: .bld .ngd *_ngdbuild.xrpt _xmsgs/ xlnx_auto_0_xdb/ | ||
${DESIGN}.ngd : ${DESIGN}.ngc ${UCF_FILE} | ||
ngdbuild -intstyle ise -uc ${UCF_FILE} -p ${DEVICE} ${DESIGN}.ngc $@ | ||
|
||
# Produces: .mfd .pad .pnx .rpt .vm6 .xml _build.xml _pad.csv _html/ _xmsgs/ | ||
${DESIGN}.vm6 : ${DESIGN}.ngd | ||
cpldfit -intstyle ise -p ${DEVICE} -ofmt vhdl -optimize density -htmlrpt -loc on -slew fast -init low -inputs 54 -pterms 90 -unused float -power std -terminate keeper $? | ||
XSLTProcess ${DESIGN}_build.xml | ||
|
||
# produces .nga | ||
${DESIGN}.nga: ${DESING}.vm6 | ||
tsim -intstyle ise ${DESIGN} $@ | ||
|
||
# Produces _xmsgs/ .jed | ||
${DESIGN}.jed: ${DESIGN}.vm6 | ||
hprep6 -s IEEE1149 -n ${DESIGN} -i ${DESIGN} | ||
|
||
# Clean up all the files from the Vivado run | ||
clean : | ||
rm -rf *.ngd *.bit *.map *.bld *.xml *.html *.jed *.nga *.err \ | ||
*.xrpt *.txt *.pad *.csv xlnx_auto* _xmsgs *.lso *_html *.xml \ | ||
*.ngc *.ngr *.srp *.lst *.gyd *.mfd *.pnx *.rpt *.vm6 | ||
|
||
# Tar and compress all the files | ||
#tar : | ||
# tar -zcvf ${DESIGN}.tar.gz *.ncd *.ngd *.mrp *.map *.par *.bld *.pcf *.bgn \ | ||
# Makefile |
Oops, something went wrong.