1
0
mirror of https://github.com/Klagarge/Cursor.git synced 2025-10-29 21:21:07 +00:00

Initial commit

This commit is contained in:
Rémi Heredero
2021-11-24 10:50:51 +01:00
commit c7ba678fbb
961 changed files with 501515 additions and 0 deletions

32
eln_cursor.bash Normal file
View File

@@ -0,0 +1,32 @@
#!/bin/bash
#===============================================================================
# eln_labs.bash
# Starts HDL designer based on the generic hdlDesigner.bash
#
design_name=`basename $0 .bash`
design_directory=`dirname ${BASH_SOURCE[0]}`
hdl_script_name="$design_directory/../Scripts/hdlDesigner.bash"
export HEI_LIBS_DIR=/media/hei-students/SYND/Ele_2131/ELN/Labs/Libraries
verbose=1
SEPARATOR='--------------------------------------------------------------------------------'
INDENT=' '
#-------------------------------------------------------------------------------
# Main script
#
if [ -n "$verbose" ] ; then
echo "$SEPARATOR"
echo "Launching HDL Designer"
echo "${INDENT}Design name is $design_name"
echo "${INDENT}Start directory is $design_directory"
echo "${INDENT}HDL designer script is $hdl_script_name"
fi
#-------------------------------------------------------------------------------
# Launch application
#
$hdl_script_name -v -d $design_directory -n $design_name