15 lines
124 B
Coq
15 lines
124 B
Coq
|
`timescale 1ns / 1ps
|
||
|
|
||
|
module top(
|
||
|
a,
|
||
|
b,
|
||
|
c);
|
||
|
|
||
|
input wire a;
|
||
|
input wire b;
|
||
|
output wire c;
|
||
|
|
||
|
assign c = a & b;
|
||
|
|
||
|
endmodule
|