freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內(nèi)容

乘法器電路的設(shè)計-文庫吧

2025-07-11 13:19 本頁面


【正文】 則 Y = ( A1 24+A2 ) ( B1 24+B2 ) = A1 B1 28 + A1 B2 24 + A2 B1 24 + A2 B2 【 例 】 8 8查找表乘法器 /********** 2 2查找表乘法器 *********/ module lookup( out, a, b, clk )。 output[3:0] out。 // 乘積 input[1:0] a, b。 // 操作數(shù) input clk。 reg[3:0] out。 reg[3:0] address。 // 存儲器地址 always @( posedge clk ) begin address = { a, b }。 case( address ) 439。h0: out = 439。b0000。 439。h1: out = 439。b0000。 439。h2: out = 439。b0000。 439。h3: out = 439。b0000。 439。h4: out = 439。b0000。 439。h5: out = 439。b0001。 439。h6: out = 439。b0010。 439。h7: out = 439。b009。 439。h8: out = 439。b0000。 439。h9: out = 439。b0010。 439。ha: out = 439。b0100。 439。hb: out = 439。b090。 439。hc: out = 439。b0000。 439。hd: out = 439。b009。 439。he: out = 439。b090。 439。hf: out = 439。b1001。 default: out = 439。bx。 endcase end endmodule /*************** 4 4查找表乘法器 ****************/ module mult4x4( out, a, b, clk )。 output[7:0] out。 // 乘積 input[3:0] a, b。 // 操作數(shù) input clk。 reg[7:0] out。 reg[1:0] firsta, firstb。 // 操作數(shù)高 2位 reg[1:0] seconda, secondb。 // 操作數(shù)低 2位 wire[3:0] outa, outb, outc
點擊復(fù)制文檔內(nèi)容
外語相關(guān)推薦
文庫吧 www.dybbs8.com
備案圖鄂ICP備17016276號-1