SOFA/BENCHMARK/and2/and2.v

19 lines
270 B
Coq
Raw Permalink Normal View History

2020-11-17 14:55:47 -06:00
/////////////////////////////////////////
// Functionality: 2-input AND
// Author: Xifan Tang
////////////////////////////////////////
`timescale 1ns / 1ps
module and2(
a,
b,
c);
input wire a;
input wire b;
output wire c;
assign c = a & b;
endmodule