blob: 58890825fa32807013ce574dfd7d7db71a7a9794 [file] [log] [blame]
primitive CELL3 (
a, // Port a
b, // Port b
c // Port c
);
output a;
input b,c;
// UDP function code here
// A = B | C;
table
// B C : A
? 1 : 1;
1 ? : 1;
0 0 : 0;
endtable
endprimitive