1. 程式人生 > >2-4線譯碼器

2-4線譯碼器

//2-4線譯碼器
module cy4(input[1:0] A,//輸入埠宣告
           input E,//輸入埠宣告
           output reg[3:0]Y//輸出埠宣告
          );
always @(A,E)
if(E == 1)  Y <= 4'b1111;      
else 
   begin
     case(A)
      2'b00: Y <= 4'b1110;
      2'b01: Y <= 4'b1101;
      2'b10: Y <= 4'b1011;
      2'b11: Y <= 4'b0111;
     endcase
   end
endmodule

這裡寫圖片描述