Verilog中的XOR(异或)和XNOR(同或) input a,b;output c异或 XORassign c = a ^ b ;同或 XNORassign c = ~a ^ b ; FPGA 2023-06-15 65 点赞 0 评论 98 浏览