2024-12-01 02:01:08 +03:00

10 lines
89 B
Coq

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