aboutsummaryrefslogtreecommitdiffstats
path: root/src/hal/components/mult2.comp
blob: a1b5ba80d6a42c51288cb8654e4a641198489a04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
component mult2 "Product of two inputs";
pin in float in0;
pin in float in1;
pin out float out "out = in0 * in1";
function _;
license "GPL";
author "John Kasunich";
see_also " invert(9), div2(9) ";

;;
FUNCTION(_) {
    out = in0 * in1;
}
bues.ch cgit interface