setenv SYNOPSYS /cad/synopsys
set path = ( $path $SYNOPSYS/hpux10/syn/bin )
source $SYNOPSYS/admin/install/sim/bin/environ.csh
if( $?LM_LICENSE_FILE ) then
setenv LM_LICENSE_FILE ${LM_LICENSE_FILE}:${SYNOPSYS}/admin/license/key
else
setenv LM_LICENSE_FILE ${SYNOPSYS}/admin/license/key
endif
setenv SYNOPSYS_SIM $SYNOPSYS/cy_1998.08 source $SYNOPSYS_SIM/admin/setup/cyclone_env.cshFor Cyclone, an example .synopsys_vss.setup file can be found in $SYNOPSYS_SIM/admin/setup. No matter what .synopsys_vss.setup file you use for Cyclone, make sure that it contains the line:
CY_CCPATH = /usr/bin/ccwhich is the path to the HP C compiler. Cyclone is a compiled-code simulator, so this path is important.
set path=( $path $SYNOPSYS/fpga_express/bin )The GUI for the HPs has not been released yet, so only fe_shell is available.
$SYNOPSYS/doc/top.pdf $SYNOPSYS_SIM/doc/online/cyclone/home.pdf $SYNOPSYS/fpga_express/help/pdf/hdlref.pdf $SYNOPSYS/fpga_express/help/pdf/vhdlref.pdf $SYNOPSYS/fpga_express/help/pdf/vhdl_addendum.pdfTo make it easier to access the documentation, I would recommend making some aliases to start acroread with the appropriate root PDF file. For instance,
####################### # Synopsys on-line docs ####################### # Main Synopsys documentation alias acro_synopsys 'acroread $SYNOPSYS/doc/top.pdf' # Cyclone documentation alias acro_cyclone 'acroread $SYNOPSYS_SIM/doc/online/cyclone/home.pdf' # FPGA Express HDL reference alias acro_fe_hdl 'acroread $SYNOPSYS/fpga_express/help/pdf/hdlref.pdf' # FPGA Express VHDL reference alias acro_fe_vhdl 'acroread $SYNOPSYS/fpga_express/help/pdf/vhdlref.pdf' # FPGA Express VHDL addendum alias acro_fe_vhdladd 'acroread $SYNOPSYS/fpga_express/help/pdf/vhdl_addendum.pdf'
Go to the CCL Tutorials Page
Go to the CCL Home PagePlease send comments to: grahamp@ee.byu.edu