Hello, I'm taking Digital logic design and have been stuck on this can I get the solution for this?
how I am going to create the circuit?
what I'm looking for is to do it with Shift Registers. is it
possible?
Design a digital systems that forces 8 LEDs to blink one after another in the following order: 1 by 1, then 2 by 2, then 3 by 3, until they finally all of them light up and then go off at once before repeating the earlier blinking sequence.
I just need to create the circuit whether it was by hand or anything. we use the program Multisim though.
Here is the same problem but with 4 LEDs instead. Could not
figure out anything out of it though.
here is a state diagram that i created:

this is basically what I could thought of.



Hello, I'm taking Digital logic design and have been stuck on this can I get the solution for this? how I am going to create the circuit? what I'm looking for is to do it with Shift Registers....
I'm having a hard time writing code for vhdl. Trying to get a 4 bit multipiler with full adder, however I keep getting errors. Was wondering if you can help me with my code. The question is to design a 4-bit multiplier in VHDL by using component statements. library ieee; use ieee.std_logic_1164.all; use ieee.std_logic_arith.all; use ieee.std_logic_unsigned.all; --entity declaration entity multi is port( A: in std_logic_vector (3 downto 0); B: in std_logic_vector (3 downto 0); P: out std_logic_vector (7 downto 0)...