/ src / hal / components / not.comp
not.comp
1  component not "Inverter";
2  pin in bit in;
3  pin out bit out;
4  function _ nofp;
5  license "GPL";
6  ;;
7  FUNCTION(_) { out = ! in; }