#FPGA學習筆記# 如何實現3—8譯碼器

一、原理 1、簡述:三位二進制信號的輸入,實現八位二進制信號的輸出 2、真值表如下 其中 A、B、C是三路輸入,EN爲使能端 二、實驗代碼 module My3_8(a,b,c,out); input a; input b; input c; output reg [7:0]out; [email protected](a,b,c) begin case({a,b,c})
相關文章
相關標籤/搜索