|
|
ComponentName ( Coord, Input-Signal(s), Output-Signal(s), other-params ) ;
|
Note:
|
Sig(sw0,1);
Sig(sw1,1);
Sig(out,1);
Switch ( "aa", sw0, 'a', Zero ); // Location = "aa", name = sw0, key = 'a'
Switch ( "ca", sw1, 'b', One ); // Initial value: Zero or One
And ( "bb", (sw0,sw1), out ); // And: inputs = (sw0,sw1), output = out
Probe ( "bc", out ); // Probe out
|
Placement of the various components:
|