13 lines
111 B
Coq
13 lines
111 B
Coq
|
|
module test;
|
||
|
|
|
||
|
|
reg [7:0] a;
|
||
|
|
reg [7:0] b;
|
||
|
|
reg [7:0] c;
|
||
|
|
|
||
|
|
initial begin
|
||
|
|
c = a ~& b;
|
||
|
|
c = a ~| b;
|
||
|
|
end
|
||
|
|
|
||
|
|
endmodule
|