2012年10月13日 星期六

Verilog HDL: Switch-level Modeling

源自http://asic-soc.blogspot.tw/2012/06/verilog-hdl-switch-level-modeling.html

Verilog HDL: Switch-level Modeling

Mos  switch  keywords :
->nmos(output,data,control)
->pmos(output,data,control)
->cmos(output,data,ncontrol,pcontrol);          
   

Bidirectional  switch  keywords :
->trans (inout1,inout2);
->tranif0(inout1,inout2,control);
->tranif1(inout1,inout2,control);

Power  and  Ground  Keywords :
->supply1     //vdd
->supply0     //vss  or  GND

Resistive  Switch  Keywords :
->rnmos       //resistive  nmos
->rpmos       //resistive  pmos
->rcmos
->rtrans
->rtranif0
->rtranif1
You might

沒有留言:

張貼留言

ESP32 微控制器 採集的環境數據,經由 MQTT 協定 轉換並寫入工業標準的 Modbus 暫存器 中

  一個典型的 IoT(物聯網)與工業自動化系統整合(SCADA/機台連線) 的架構圖。它透過 Node-RED 作為核心資料網關,將前端 ESP32 微控制器 採集的環境數據,經由 MQTT 協定 轉換並寫入工業標準的 Modbus 暫存器 中。 1. 各模組功能拆解...