• 2022-06-29
    我们根据三人表决器的真值表,通过卡诺图化简可得到:L1=S0S1+S0S2+S1S2L2=~L1对应的程序是否正确。module vote(S1,S2,S3,L1,L2); output L1,L2; input S1,S2,S3; //其中S11,S22,S33为中间变量 and(S11,S1,S2); or(S22,S1,S3); and(S33,S2,S3); or(L1,S11,S22,S33); not(L2,L1);endmodule