实例1 二选一多路选择器 module muxtwo(out a,b,sl);input a,b,sl;output reg out;always@(sl or a or b)if(!sl) out=a;else out=b