In lab we had to implement a 8-bit adder. I chose to write the adder module in Verilog, simply using two 8-bit inputs and the sum as a 9-bit output. Then I had to write another module to convert the result into two hex digits to be displayed on a seven-segment display. In the report I'm asked what kind of adder I used. Well I sort of have an idea about a couple different types, but it's not that I actually coded the addition. I didn't have to worry about Cin/Cout, only used the line Sum = x + y;... So I looked up information on the Verilog operators but I couldnt see that they defined the addition operator as a certain type of adder. Any ideas?