What does the caret sign (^) mean in the Verilog hdl language? In a formula in verilog with inputs a and b and output c, what would c = a ^ b mean?
1 Answer
The ^ symbol implements the XOR function.
See here for a full list of Verilog operators.