02 October, 2018

1 bit Odd Parity Checker

// BlueTechspot.blogspot.com
module paritychecker(a,b,c,d,p);
input a,b,c,d;
output p;
xor (p,a,b,c,d);
endmodule

No comments:

Post a Comment

If you have any Queries, suggestions or requests, Do comment here!