Example CL block #1:

Formal Functional Specifications:

  1. C-Like language form:
    if ((x0 == 1) && (x1 == 0)) !! ((x0 == 0) && (X1 == 1)) y0 = 1;
    else Y0 = 0;

  2. Truth Table Form:

    x0 x1 y0
    0 0 0
    0 1 1
    1 0 1
    1 1 0

4.2