⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 verilog2oa

📁 openaccess与verilog互相转化时所用的源代码
💻
字号:
#!/bin/sh# *****************************************************************************# *****************************************************************************# verilog2oa## This script is wrapper for verilog2oa.  You can set the following options# depending on how you would like to use verilog2oa.## Mode:# The default use is to run the optimized mode.  To specify debug mode# for all programs, you should set the OA_MODE environment variable to 'dbg'.## To set the mode to 'dbg' on an individual program you should# set the BINARYNAME_MODE environment variable to 'dbg'.## Bit:# The default use is to run 32bit code.  To specify 64bit for all# programs, set the OA_BIT environment variable to '64'.## To specify the bit as '64' for a specific program, you should# set the BINARYNAME_BIT environment variable to '64'.## *****************************************************************************# Except as specified in the OpenAccess terms of use of Cadence or Silicon# Integration Initiative, this material may not be copied, modified,# re-published, uploaded, executed, or distributed in any way, in any medium,# in whole or in part, without prior written permission from Cadence.##                Copyright 2002-2005 Cadence Design Systems, Inc.#                           All Rights Reserved.## $Author: mdavey $# $Revision: 1.3 $# $Date: 2005/06/07 18:39:53 $# $State: Exp $## *****************************************************************************# *****************************************************************************PROGRAM=verilog2oaINSTALL_ROOT=`dirname $0`unset CDPATHINSTALL_ROOT=`cd $INSTALL_ROOT/..;pwd`BIT=${OA_BIT:-32}BIT=${VERILOG2OA_BIT:-$BIT}MODE=${OA_MODE:-opt}MODE=${VERILOG2OA_MODE:-$MODE}exec $INSTALL_ROOT/bin/runExe $PROGRAM $INSTALL_ROOT $BIT $MODE "$@"

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -