
verilog-structural and behavioral
文章平均质量分 77
李雾月ss
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
introduce HDL and give some examples about the Verilog language
1. Overview of HDLs HDL is hardware description language is means that it is a language to describe hardware. HDLs have two main styles: Verilog and VHDL. Verilog: is C-based and VHDL is Ada b原创 2017-09-06 21:35:27 · 420 阅读 · 0 评论 -
Verilog 运算符
Verilog 运算1. Arithmetic Operators(算术运算): + - * / %Attention: 5%2=1; 5%-2=1; -5%2=-1; -5%-2=-1; (只与前面的数符号有关)2. Bitwise Operators(位运算符): ~(invert), &(AND), | (OR) , ^ (Exclusive OR),,~^原创 2017-09-21 18:33:31 · 11918 阅读 · 1 评论