Design a code converter circuit that takes a 4-bits binary number as inputs and find the corresponding output as follows
Posted: Sun Jul 03, 2022 12:00 pm
Design a code converter circuit that takes a 4-bits binary number as inputs and find the corresponding output as follows -If the input number is multiple of 5 then the output = (input * 4 + 2)/3 - If the input number is not multiple of 5 then output = (input * 3 - 1)/4 (Note that 0 is multiple of 5,, Note if the output = 5.7 the floor of 5.7 which = 5) Follow the steps for combinational circuit design and find the minimum POS for each output. Implement the design using Verilog, verify it by using waveform then download your circuit on the altera board, for Inputs switches will be used and for Outputs use LEDs.