
Design a Sequential circuit in Logisim which has two HEX displays and operates as follows: 53642 is the number. Each time when the first display changes to a new number in the sequence, the second display should count starting from zero up to the number in the first display. When the second display reaches the first display, the first display changes to the next number in the sequence (if it reaches the end of the sequence, then it returns to the beginning again). For example, if your number sequence is \( 5,3,6,4,2 \) then the first display starts at 5 . Second display starts counting from 0 to 5 . After it reaches 5 , the first display changes to the next number in the sequence which is 3 , and the counter (send display) starts again counting from 0 up to 3 . When it reaches 3 , the first display changes to 6 and counters starts again to count from 0 to 6 . When the first display reaches the end of the sequence (which is 2 ) it returns to the beginning of the sequence (i.e., the next number is going to be 5). Circuits should work synchronously, so that when the counter reaches the first display, the changes take place with the next clock rising edge (so the displays show the same number for one clock cycle). You need to state diagrams, Karnaugh maps, and one .circ file containing your Logisim circuit.|