source: PROJECT_CORE_MPI/MPI_HCL/BRANCHES/v2.0/Test_Timer/ipcore_dir/mem8k8_ste/implement/implement.sh @ 139

Last change on this file since 139 was 139, checked in by rolagamo, 10 years ago

Ceci est la version 16 bits de la plateforme ainsi que la version hierarchique du NoCNoC

File size: 1.0 KB
Line 
1#!/bin/sh
2
3# Clean up the results directory
4rm -rf results
5mkdir results
6
7#Synthesize the Wrapper Files
8echo 'Synthesizing XST wrapper file (core_top.vhd) with XST';
9echo 'Synthesizing example design with XST';
10xst -ifn xst.scr
11cp mem8k8_top.ngc ./results/
12
13
14# Copy the netlist generated by Coregen
15echo 'Copying files from the netlist directory to the results directory'
16cp ../../mem8k8.ngc results/
17
18#  Copy the constraints files generated by Coregen
19echo 'Copying files from constraints directory to results directory'
20cp ../example_design/mem8k8_top.ucf results/
21
22cd results
23
24echo 'Running ngdbuild'
25ngdbuild -p xc7a100t-csg324-3 mem8k8_top
26
27echo 'Running map'
28map mem8k8_top -o mapped.ncd -pr i
29
30echo 'Running par'
31par mapped.ncd routed.ncd
32
33echo 'Running trce'
34trce -e 10 routed.ncd mapped.pcf -o routed
35
36echo 'Running design through bitgen'
37bitgen -w routed
38
39echo 'Running netgen to create gate level VHDL model'
40netgen -ofmt vhdl -sim -tm mem8k8_top -pcf mapped.pcf -w routed.ncd routed.vhd
Note: See TracBrowser for help on using the repository browser.