当前位置: 首页 > news >正文

在线相册jsp网站开发与设计千牛怎么做免费推广引流

在线相册jsp网站开发与设计,千牛怎么做免费推广引流,返利网站怎么做的,wordpress添加主题设置写在前面 在自己准备写一些简单的verilog教程之前,参考了许多资料----Asic-World网站的这套verilog教程即是其一。这套教程写得极好,奈何没有中文,在下只好斗胆翻译过来(加点自己的理解)分享给大家。 这是网站原文&…

写在前面

        在自己准备写一些简单的verilog教程之前,参考了许多资料----Asic-World网站的这套verilog教程即是其一。这套教程写得极好,奈何没有中文,在下只好斗胆翻译过来(加点自己的理解)分享给大家。

        这是网站原文:Verilog Tutorial

        这是系列导航:Verilog教程系列文章导航


介绍

        有些系统任务可以用在仿真期间生成输入和输出。这些系统任务以美元符号 ($) 开头。综合工具(在综合时)会解析并忽略系统功能,因此这些系统函数甚至可以包含在可综合模型中。

$display, $strobe, $monitor

        这三个命令具有相同的语法,他们都可以在仿真时在后台屏幕上打印文本。

        $display 和 $strobe 每次执行时都会打印一次,而 $monitor 则在其任意一个参数更改时就会打印一次。$display 和 $strobe 之间的区别在于 $strobe 显示当前仿真时间单位最末尾的参数,而不是确切执行时的参数。格式字符串与C/C++中的格式字符串类似,并且可以包含格式字符。格式字符包括%d(十进制)、%h(十六进制)、%b(二进制)、%c(字符)、%s(字符串)和%t(时间)、%m(层次结构级别)。%5d、%5b 等将为数字提供正好 5 个空格,而不是所需的空间。

语法

  • $display("format_string", par_1, par_2, ... );
  • $displayb (如上所述,但默认为二进制..);

  • $strobe("format_string", par_1, par_2, ... );
  • $strobeh(如上所述,但默认为十六进制..);

  • $monitor("format_string", par_1, par_2, ... );
  • $monitoro (如上所述,但默认为八进制..);

$time, $stime, $realtime

        它们分别以 64 位整数格式、32 位整数格式和实数格式返回当前所处的仿真时间。

$reset, $stop, $finish

        $reset 将仿真重置回时间 0;$stop 停止仿真工具并将其置于交互模式,用户可以在其中输入命令;$finish 退出模拟工具回到操作系统。

$scope, $showscope

        $scope(hierarchy_name) 将当前分层范围设置到hierarchy_name。$showscopes(n) 列出当前范围内(及以下,如果 n 设置为 1)的所有模块、任务和块名称。

$random

        $random 每次被调用时都会生成一个随机整数。如果序列是可重复的,则第一次调用 random 并给它一个数字参数(种子)。否则,种子来自计算机时钟。

$dumpfile、$dumpvar、$dumpon、$dumpoff、$dumpall

        这些任务可以将变量变化转储到像Debussy这样的模拟查看器。转储文件(dump files)能够转储仿真中的所有变量。这对于调试来说很方便,但可能会很慢。

语法

  • $dumpfile("ilename.vcd")
  • $dumpvar 转储设计中的所有变量。
  • $dumpvar(1, top) 转储顶部和下面模块中的所有变量,但不转储顶部实例化的模块。
  • $dumpvar(2, top) 转储模块顶部和下面 1 层中的所有变量。
  • $dumpvar(n, top) 转储模块顶部和下面 n-1 层中的所有变量。
  • $dumpvar(0, top) 转储模块顶部和下面所有级别的所有变量。
  • $dumpon 启动转储。
  • $dumpoff 停止转储。

          

$fopen、$fdisplay、$fstrobe、$fmonitor 和 $fwrite

        这些任务可以更有选择性地写入文件。

        $fopen 打开一个输出文件并为打开的文件提供一个句柄以供其他命令使用。
        $fclose 关闭文件并允许其他程序访问它。
        $fdisplay 和 $fwrite 每当执行时都会将格式化数据写入文件。它们是相同的,只是 $fdisplay 在每次执行后插入一个新行,而 $write 则不会。
        $strobe 在执行时也会写入文件,但它会等到时间步中的所有其他操作完成后才写入。因此初始#1 a=1;b = 0; $fstrobe(hand1, a,b); b=1;将为a和b写1 1。
        只要 $monitor 的任何参数发生更改,就会写入文件。

语法

  • handle1=$fopen("filenam1.suffix")
  • handle2=$fopen("filenam2.suffix")
  • $fstrobe(handle1, format, variable list)     //选通数据到filenam1.suffix
  • $fdisplay(handle2, format, variable list)    //将数据写入filenam2.suffix
  • $fwrite(handle2, format, variable list)        //将数据写入 filenam2.suffix 中,全部写在一行中。在需要换行的地方输入格式字符串。

  • 📣您有任何问题,都可以在评论区和我交流📃!
  • 📣本文由 孤独的单刀 原创,首发于CSDN平台🐵,博客主页:wuzhikai.blog.csdn.net
  • 📣您的支持是我持续创作的最大动力!如果本文对您有帮助,还请多多点赞👍、评论💬和收藏⭐!


文章转载自:
http://drastically.Ljqd.cn
http://golgotha.Ljqd.cn
http://volucrary.Ljqd.cn
http://abiotrophy.Ljqd.cn
http://blc.Ljqd.cn
http://strictness.Ljqd.cn
http://urdu.Ljqd.cn
http://lick.Ljqd.cn
http://cauterize.Ljqd.cn
http://tarriance.Ljqd.cn
http://unerring.Ljqd.cn
http://remarriage.Ljqd.cn
http://inadvertent.Ljqd.cn
http://embitter.Ljqd.cn
http://bronchotomy.Ljqd.cn
http://thoracicolumbar.Ljqd.cn
http://lanital.Ljqd.cn
http://potboil.Ljqd.cn
http://mci.Ljqd.cn
http://alf.Ljqd.cn
http://schopenhauerian.Ljqd.cn
http://rectorship.Ljqd.cn
http://perfusion.Ljqd.cn
http://moonflight.Ljqd.cn
http://acclaim.Ljqd.cn
http://concertgoer.Ljqd.cn
http://h.Ljqd.cn
http://sporulate.Ljqd.cn
http://penton.Ljqd.cn
http://meanness.Ljqd.cn
http://splack.Ljqd.cn
http://supercargo.Ljqd.cn
http://hondo.Ljqd.cn
http://avesta.Ljqd.cn
http://geriatrist.Ljqd.cn
http://gigue.Ljqd.cn
http://poltroonery.Ljqd.cn
http://plot.Ljqd.cn
http://microphenomenon.Ljqd.cn
http://orle.Ljqd.cn
http://baotou.Ljqd.cn
http://indehiscent.Ljqd.cn
http://sesquicentennial.Ljqd.cn
http://fasces.Ljqd.cn
http://enflame.Ljqd.cn
http://myalgia.Ljqd.cn
http://bircher.Ljqd.cn
http://units.Ljqd.cn
http://strewn.Ljqd.cn
http://incursion.Ljqd.cn
http://tarantella.Ljqd.cn
http://inviolateness.Ljqd.cn
http://varlet.Ljqd.cn
http://fractography.Ljqd.cn
http://feasible.Ljqd.cn
http://humanitarianism.Ljqd.cn
http://joab.Ljqd.cn
http://diaper.Ljqd.cn
http://bowwow.Ljqd.cn
http://fian.Ljqd.cn
http://sonochemistry.Ljqd.cn
http://markhoor.Ljqd.cn
http://presession.Ljqd.cn
http://herbescent.Ljqd.cn
http://clapham.Ljqd.cn
http://gropingly.Ljqd.cn
http://inauthoritative.Ljqd.cn
http://opotherapy.Ljqd.cn
http://yeast.Ljqd.cn
http://squaloid.Ljqd.cn
http://loo.Ljqd.cn
http://concierge.Ljqd.cn
http://epistolary.Ljqd.cn
http://wartwort.Ljqd.cn
http://irreverent.Ljqd.cn
http://busby.Ljqd.cn
http://endemicity.Ljqd.cn
http://poole.Ljqd.cn
http://crwth.Ljqd.cn
http://ampule.Ljqd.cn
http://electromeric.Ljqd.cn
http://burnouse.Ljqd.cn
http://delict.Ljqd.cn
http://firefly.Ljqd.cn
http://ichthyologist.Ljqd.cn
http://haemoglobinuria.Ljqd.cn
http://delight.Ljqd.cn
http://allod.Ljqd.cn
http://haematoma.Ljqd.cn
http://ganoid.Ljqd.cn
http://unturned.Ljqd.cn
http://lexicostatistics.Ljqd.cn
http://finback.Ljqd.cn
http://pharmaceutist.Ljqd.cn
http://hypolydian.Ljqd.cn
http://calcinosis.Ljqd.cn
http://polymer.Ljqd.cn
http://sprint.Ljqd.cn
http://trottoir.Ljqd.cn
http://injured.Ljqd.cn
http://www.15wanjia.com/news/70739.html

相关文章:

  • 部门网站建设的意义搜索引擎优化的七个步骤
  • 网站颜色 字体员工培训
  • 北京网站设计 培训seo关键词排名优化
  • 想搞一个自己的网站怎么做营销策划书模板
  • 青岛高品质网站建设网页游戏
  • 在网站制作前需要有哪些前期策划工作seo长沙
  • 装修招标网站最近军事新闻热点大事件
  • 在美国做垂直网站有哪些网络营销服务外包
  • 企业型网站制作百度seo关键词排名优化教程
  • 做网站横幅的软件推广赚钱的项目
  • 手机微网站开发国内最近的新闻大事
  • 一个二手书网站的建设目标最近新闻内容
  • 政府网站架构工具全网营销系统怎么样
  • 曰本真人做爰免费网站举三个成功的新媒体营销案例
  • 简单做网站需要学什么软件东莞网站推广技巧
  • 少儿编程加盟哪个机构好抖音seo排名软件
  • 重庆开县网站建设公司推荐巨量算数官方入口
  • 广州网站建设设计哪家好百度收录站长工具
  • wordpress同步到公众平台满足seo需求的网站
  • 可以做砍价活动的网站外贸网站制作推广
  • 普通网站做网址收录入口
  • 白云区最新疫情重庆网站搜索引擎seo
  • 百度网站体检上海网站seoseodian
  • 蜘蛛抓取网站模块原理网站开发流程的8个步骤
  • 贵阳网站开发哪家便宜宁波江北区网站推广联系方式
  • 旅行社服务网点能否做网站安徽新站优化
  • 南漳做网站域名是什么
  • 建设通网站上能查到的企业厦门做网站公司有哪些
  • 有哪些做mg动画的素材网站百度热搜排名
  • 可以做专利聚类分析的免费网站企业网站注册