2024-07-05 19:15:16 +03:00

10 lines
80 B
Coq

module ha(
input X, Y,
output S, C
);
xor(S, X, Y);
and(C, X, Y);
endmodule