skip to main
|
skip to sidebar
realy2j
2008年10月6日 星期一
2008 10 6
Design a verilog model of a half adder and write a testbench to verify the designed verilog model
module Add-half (sum,c_out,a,b);input a,b;output sum,c_out;wire c_out_bar;XOR (sum,a,b);nand (c_out_bar,a,b);not (c_out,c_out_bar);
endmodule
沒有留言:
張貼留言
較新的文章
較舊的文章
首頁
訂閱:
張貼留言 (Atom)
網誌存檔
▼
2008
(4)
▼
10月
(4)
2008 10 20
module top;wire a,b;wire sum,c_out;system_clock #1...
2008 10 6
實作
關於我自己
realy2j
檢視我的完整簡介
沒有留言:
張貼留言