1.verilog behavioral models contain procedural statements that control the simulation and manipulate variables of the data types.These statements are concurrent to model the inherent concurrence of hardware.

2.all of the flows defined by the initial and always constructs start together at simulation time zero.The initial constructs execute once,and the always constructs execute repetitively.

eg:

module behave;

reg [1:0] a,b;

initial begin

a='b1;

b='b0;

end

always begin

#50 a = ~a;

end

always begin

#100 b=~b;

end

endmodule

最新文章

  1. ****Linux MySQL命令运用个人总结
  2. SQLBackupAndFTP The server principal "NT AUTHORITY\SYSTEM" is not able to access the database "xxxx"
  3. tyvj1189 盖房子
  4. C语言面试题汇总之一
  5. java项目@override报错问题
  6. Python的神奇方法指南
  7. [001]const和指针
  8. MyBatis自动获取主键,MyBatis使用Oracle返回主键,Oracle获取主键
  9. 并行HASH JOIN小表广播问题
  10. 关于javaBean中boolean类型变量的set和get注入后传到前端JS中的问题
  11. redux 中间件 --- applyMiddleware 源码解析 + 中间件的实战
  12. 微信小程序去除Button默认样式
  13. MySQL 基础知识梳理学习(一)----系统数据库
  14. 99%的Linux运维工程师必须要掌握的命令及运用
  15. PLSQL过期:Your trial period for PL/SQL Developer is over .If you want to continue using this software ,you must purchase the retail version.
  16. dubbo序列化
  17. 20145322 Exp5 MS08_067漏洞测试
  18. node中异步IO的理解
  19. Log表新的RowKey设计,预Split
  20. java---Map接口实现类

热门文章

  1. Qt 2D绘图之四:绘图中的其他问题
  2. POJ1470 LCA (Targan离线)
  3. 栈 && 教授的测试
  4. chrome浏览器历史版本
  5. JAVA常用知识总结(九)——线程
  6. C++ 自定义结构体的Priority Queue
  7. C. Anton and Making Potions 贪心 + 二分
  8. Oracle/MySql/SQL Sqlserver分页查询
  9. WebForm随笔
  10. MyBatis框架的XML数据访问Dao层接口的组合使用