【verilog学习】Verilog语言中的或(|和||)
生活随笔
收集整理的這篇文章主要介紹了
【verilog学习】Verilog语言中的或(|和||)
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
一、|和||的區(qū)別
|是按位或:將 a 的每個位與 b 相同的位進行相或(單個)
||是邏輯或:a 或上 b,如果a或者b有一個為1,a||b結(jié)果為1,表示真。(整體)
題目:Build a circuit that has two 3-bit inputs that computes the bitwise-OR of the two vectors, the logical-OR of the two vectors, and the inverse (NOT) of both vectors. Place the inverse of b in the upper half of out_not (i.e., bits [5:3]), and the inverse of a in the lower half.
?解答:
module top_module( input [2:0] a,input [2:0] b,output [2:0] out_or_bitwise,output out_or_logical,output [5:0] out_not );assign out_or_bitwise = a|b;assign out_or_logical = a||b;assign out_not = {~b,~a}; endmodule總結(jié)
以上是生活随笔為你收集整理的【verilog学习】Verilog语言中的或(|和||)的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 开关电源基本原理和种类-反激-正激
- 下一篇: 回滚机制有多少种?它们的实现原理是什么?