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