Design a circuit that receives a 4-bit number and generates an output that indicates when the number represents a BCD digit (the value is between 0 and 9).
module is_bcd_digit(digit, is_bcd);
input [3:0] digit;
output is_bcd;digit is the 4-bit input number.
is_bcd indicates when the number is a BCD
digit.