Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

VHDL help. can someone please help answer this problem Draw a block diagram that corresponds to the following VHDL model. Be sure to label all

VHDL help. can someone please help answer this problem

image text in transcribed

Draw a block diagram that corresponds to the following VHDL model. Be sure to label all inputs, outputs, internal signals, and component ports. LIBRARY ieee; USE ieee.std_logic_l164.ALL; ENTITY circuit IS PORT(init, run, slow_pace, fast_pace, speed_sel: IN std_logic pump1, pump0, motorA, motorB: OUT std_logic); END Entity circuit; ARCHITECTURE problem OF circuit IS component counter_2bit is PORT (reset, en, clk: in std_logic; Q: out std_logic_vector(1 downto 0)); end component counter_2bit; component decode_2_to_4 is PORT (sel: in std_logic_vector(1 downto 0); D0, Dl, D2, D3: out std_logic); end component decode_2_to_4; signal clock: std_logic; signal S: std_logic_vector(1 downto 0); BEGIN cnt: counter_2bit port map (init, run, clock, S); dec: decode_2_to_4 port map (S, pump0, pump1, motorA, motorB); clock

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Driven Web Sites

Authors: Joline Morrison, Mike Morrison

2nd Edition

? 061906448X, 978-0619064488

More Books

Students also viewed these Databases questions

Question

What is the difference between Needs and GAP Analyses?

Answered: 1 week ago

Question

What are ERP suites? Are HCMSs part of ERPs?

Answered: 1 week ago