Odpowiedzi:
Operatory równości i relacji (zwróć X, jeśli operand ma X lub Z)
m == n // is m equal to n? (1-bit True/False result)
m != n // is m not equal to n? (1-bit True/False result)
m < n // is m less than n? (1-bit True/False result)
m > n // is m greater than n? (1-bit True/False result)
m <= n // is m less than or equal to n? (1-bit True/False result)
m >= n // is m greater than or equal to n? (1-bit True/False result)
Operatory tożsamości (porównaj wartości logiczne 0, 1, X i Z)
m === n // is m identical to n? (1-bit True/False results)
m !== n // is m not identical to n? (1-bit True/False result)
Przykład
Jeśli reg a jest mniejszy niż 2'b10, przechowuj 2'b11 w a.
if (a < 2'b10) begin
a = 2'b11;
end
Ostrzeżenia
Operatory porównania numerycznego Verilog są podobne do operatorów w C: ==,! =, <,>, <=,> =.