復習 - 信号の宣言
CoddyのVerilogジャーニー「基礎」セクションの一部。レッスン 12/90。
チャレンジ
この章で学んだ内容に基づいて、不足している信号宣言を追加してください。
実行すること:
- Declare an 8-bit wire called
data - Declare a 4-bit reg called
counter - Declare an integer called
i - Declare a parameter called
MAXwith value255
自分で試してみよう
module data_types;
// 8ビットのwire dataを宣言する
// 4ビットのreg counterを宣言する
// integer iを宣言する
// 値が255のparameter MAXを宣言する
endmodule
基礎のすべてのレッスン
自分で練習してみよう: Verilogオンラインコンパイラ