What does the caret sign (^) mean?

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?

0

1 Answer

The ^ symbol implements the XOR function. See here for a full list of Verilog operators.

You Might Also Like