tags: - verilog - formulation created: 2024-10-23
module adder( input a, input b, output y, output carry ); assign y = a ^ b; assign carry = a & b; endmodule