blob: a81bb6c3d81c2f49887f4bccdc6a96724ada44b4 [file] [log] [blame]
// Created by ihdl
module HA_X1 (A, B, CO, S);
input A;
input B;
output CO;
output S;
and(CO, A, B);
xor(S, A, B);
specify
(A => CO) = (0.1, 0.1);
(B => CO) = (0.1, 0.1);
if((B == 1'b0)) (A => S) = (0.1, 0.1);
if((B == 1'b1)) (A => S) = (0.1, 0.1);
if((A == 1'b0)) (B => S) = (0.1, 0.1);
if((A == 1'b1)) (B => S) = (0.1, 0.1);
endspecify
endmodule