iverilog/ivtest/ivltests/br_gh552.v

13 lines
111 B
Verilog

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