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