aboutsummaryrefslogtreecommitdiffstats
path: root/src/hal/components/not.comp
blob: f07db19d0aeb41e7eff37a6a0b8b394479f31769 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
component not "Inverter";
pin in bit in;
pin out bit out;
function _ nofp;
see_also """
\\fBand2\\fR(9),
\\fBlogic\\fR(9),
\\fBlut5\\fR(9),
\\fBor2\\fR(9),
\\fBxor2\\fR(9).
""";
license "GPL";
author "Jeff Epler";
;;
FUNCTION(_) { out = ! in; }
bues.ch cgit interface