2021年6月30日11:10:30
运算符简写。
& a[3:0] // AND: a[3]&a[2]&a[1]&a[0]. Equivalent to (a[3:0] == 4'hf)
| b[3:0] // OR: b[3]|b[2]|b[1]|b[0]. Equivalent to (b[3:0] != 4'h0)
^ c[2:0] // XOR: c[2]^c[1]^c[0]
module top_module (
input [7:0] in,
output parity);
// assign parity = ^ in[7:0];
assign parity = ^ in;
endmodule
按所有位XOR即可。
不写明多少位到多少位即默认全部的位。