题解 | #多位信号xnor#
多位信号xnor
https://www.nowcoder.com/practice/aa21227e7bf6409e818b01ea21a44c2b
`timescale 1ns/1ns module top_module( input a, b, c, d, e, output [24:0] out ); wire[24:0] w1,w2; assign w1 = {{5{a}},{5{b}},{5{c}},{5{d}},{5{e}}}; assign w2 = {5{a,b,c,d,e}}; //拼接法 assign out = ~(w1 ^ w2); //xnor (out,w1,w2); //不让用 //用XNOR endmodule