Question.1
What is the result of compiling this module?
module top( input a, b, output logic_out ); reg logic_out; assign logic_out = a ^ b; endmodule
Select Answer
Compilation error
Compiles successfully
Simulates correctly but fails synthesis
Compiles with a warning