Initial commit
This commit is contained in:
25
Exp1-2-2/Exp1-2-2.srcs/sources_1/new/mux21.v
Normal file
25
Exp1-2-2/Exp1-2-2.srcs/sources_1/new/mux21.v
Normal file
@@ -0,0 +1,25 @@
|
||||
`timescale 1ns / 1ps
|
||||
//////////////////////////////////////////////////////////////////////////////////
|
||||
// Company:
|
||||
// Engineer:
|
||||
//
|
||||
// Create Date: 2024/09/24 15:51:41
|
||||
// Design Name:
|
||||
// Module Name: mux21
|
||||
// Project Name:
|
||||
// Target Devices:
|
||||
// Tool Versions:
|
||||
// Description:
|
||||
//
|
||||
// Dependencies:
|
||||
//
|
||||
// Revision:
|
||||
// Revision 0.01 - File Created
|
||||
// Additional Comments:
|
||||
//
|
||||
//////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
module mux21( input a,input b,input c,output y);
|
||||
assign y = c ? b : a;
|
||||
endmodule
|
||||
Reference in New Issue
Block a user