component mux2 "Select from one of two input values"; pin in bit sel; pin out float out; pin in float in1; pin in float in0; function _; license "GPL"; ;; FUNCTION(_) { if(sel) out = in1; else out = in0; }