$stop and $finish in verilog
$stop - Pauses the simulation, so you can resume it by using fg command in linux. In this case lincense will not be released and process also is not killed, consuming memory.
$finish - Simulation is finished, so releasing of license and killing the process will be done.
$finish;
    Finishes a simulation and exits the simulation process.
$stop;
    Halts a simulation and enters an interactive debug mode.
$stop : Undesired termination of the simulation. All the system activities are suspended.
$finish : Used to relieve the compiler.
$finish exits the simulation and gives control back to the operating system.
$stop suspends the simulation and put interactive mode.
s a simulator in an


随机推荐
- Micro 消息
			
上周,微软与计算机历史博物馆合作,发布了MS-DOS 1.1/2.0和Word for Windows 1.1a版本的源码,这是微软首次将其核心产品开源. MS-DOS MS-DOS是微软于1981年 ...
 - C# 线程知识--使用ThreadPool执行异步操作
			
C# 线程知识--使用ThreadPool执行异步操作 在应用程序中有许多复杂的任务,对于这些任务可能需要使用一个或多个工作线程或I/O线程来协作处理,比如:定时任务.数据库数据操作.web服务.文件 ...
 - The Task: Events, Asynchronous Calls, Async and Await
			
The Task: Events, Asynchronous Calls, Async and Await Almost any software application today will lik ...
 - C# VS2010中,用微软自带的System.Data.OracleClient来连接Oracle数据库
			
由于微软在.Net框架4.0中已经决定撤销使用System.Data.OracleClient,造成在VS2010中无法连接Oracle数据库,但它还依旧存在于.Net架构中,我们可以通过自己引用 C ...
 - [King.yue]Grid列选中JS控制按钮状态
			
Grid列选中一行某些按钮启用 例:gridId(Grid ID) btnEditId(编辑按钮ID) btnDeleteId(删除按钮ID) JS: var setButtonStatus = ...
 - HDU 2509
			
与HDU 1907一样... #include<cstdio> #include<cstring> #include<cstdlib> #include<io ...
 - 【Java基础】Integer包装类的缓冲池问题
			
首先看下面这个例子: public class TestNew { public static void main(String args[]){ Integer i1 = 10; //Integer ...
 - 【Java基础】基础概念
			
Java 关键字 被Java语言赋予特定含义的单词 组成关键字的字母全部小写 goto和const作为保留字存在,目前并不使用 一般关键字在IDE中会高亮 用于定义数据类型的关键字 class i ...
 - hdu 3549 Flow Problem (最大流)
			
裸最大流,做模板用 m条边,n个点,求最大流 #include <iostream> #include <cstdio> #include <cstring> #i ...
 - Tomcat内存溢出的原因
			
在生产环境中tomcat内存设置不好很容易出现内存溢出.造成内存原因是不一样的,当然处理方式也不一样. 这里根据平时遇到的情况和相关资料进行一个总结.常见的一般会有下面三种情况: 1.OutOfMem ...