最初のページ 戻る 次へ 最後のページ

module gate00 (a,b,c);

input a,b;

output c;

assign c=a&b;

endmodule

回路動作の記述

論理関数の定義

a,b,cの関係

c

a

b

module gate00

最後に;