2021年4月23日 星期五

HBLbits_Verilog Basic_Mt2015 q4b

HBLbits_Verilog Basic_Mt2015 q4b

Circuit B can be described by the following simulation waveform: 


Implement this circuit.


module top_module (input x, 

                   input y, 
                   output z );
    assign z = ((~x)&(~y)) | (x&y);
endmodule

module top_module(
input x,
input y,
output z);
// The simulation waveforms gives you a truth table:
// y x   z
// 0 0   1
// 0 1   0
// 1 0   0
// 1 1   1   
// Two minterms: 
// assign z = (~x & ~y) | (x & y);
// Or: Notice this is an XNOR.
assign z = ~(x^y);

endmodule

沒有留言:

張貼留言

Telegram +ESP32自動發報機

  Telegram   +ESP32自動發報機 這套系統是一個典型的 IoT(物聯網)架構 ,結合了遠端配置(Python)、通訊中介(MQTT)與硬體執行(ESP32)。 以下我為您拆解這兩支程式的核心運作原理: 一、 系統架構流程 Python 端 (控制台) :使用者輸入...