2021年4月22日 星期四

HBLbits_Verilog Basic_Truthtable1

 HBLbits_Verilog Basic_Truthtable1

For a boolean function of N inputs, there are 2N possible input combinations. Each row of the truth table lists one input combination, so there are always 2N rows. The output column shows what the output should be for each input value.

RowInputsOutputs
numberx3x2x1f
00000
10010
20101
30111
41000
51011
61100
71111

The above truth table is for a three-input, one-output function. 


module top_module( 
    input x2,
    input x1,  // three inputs
    output f   // one output
);
    assign f = (~x3 & x2 & ~x1) |
        (~x3 & x2 &  x1) |
        ( x3 &  ~x2 &  x1) |
        ( x3 &  x2 &  x1) ; 

endmodule
    input x3,

沒有留言:

張貼留言

RFID TI 培訓影片系列

RFID TI 培訓影片系列  https://www.ti.com/zh-tw/video/series/rfid.html 培訓影片系列 RFID 隨著創新技術日益發展,RFID 和 RF 術語越來越容易讓人混淆。本訓練系列詳細介紹了使用案例、權衡技術優缺點,讓您清楚知道該選...