日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

【verilog学习】Verilog语言中的或(|和||)

發(fā)布時間:2024/3/12 编程问答 31 豆豆
生活随笔 收集整理的這篇文章主要介紹了 【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)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。