基本元件

Verilog

基本語法

型態

全域變數

基本元件

多樣的寫法

指定

assign

always

initial

運算式

分枝

迴圈

模組

函數

Task

陣列

輸出入

觀察

真值表

測試程式

訊息顯示

注意事項

模擬程序

硬體工程

程式範例

Xor

Xor3

全加器

加法器

加減器

快速加法器

乘法器

ALU

閂鎖器

脈衝偵測

計數器

多工器

暫存器群

記憶體

延遲問題

浮點數

狀態機

程式計數器

CPU0-Mini

CPU0

pipeline

工具

QuartusII

Icarus

Veritek

訊息

相關網站

參考文獻

最新修改

簡體版

English

元件 反元件 說明
and nand 邏輯元件 AND/NAND
or nor 邏輯元件 OR/NOR
xor xnor 邏輯元件 XOR/XNOR
buf not 緩衝器(buffer) /反相器 (inverter)
bufif0 notif0 三態緩衝器 (0 代表連通)
bifif1 notif1 三態緩衝器 (1 代表連通)

元件可以包含延遲的語法

buf a(x, y); // 無延遲
buf #1 b(x, y); // 延遲 1 單位時間
buf #(2,3) c(x, y); // 時間 2 時升起 (rise),3 時落下 (fall)
buf #(1:2:3) d(x, y); // 1:最短延遲 (min), 2:典型延遲 (typical), 3:最長延遲 (max)

Facebook

Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-NonCommercial-ShareAlike 3.0 License