subject

While the majority of counters are binary, sometimes it is advantageous to use non-binary counters. One common non-binary counter is a binary coded decimal (BCD) counter that represents each decimal digit with 4 bits. The counter your are to design is a two digit BCD counter. 6 Normally, this would require 8 bits. However, this counter is a modulo 60 counter. So, it counts from 00 to 59 in BCD and then rolls over to 00. Since the most significant digit never exceeds 5, it only requires 3 bits. So, this counter requires a total of 7 bits. The entity declaration for modulo_60_counter is: entity modulo_60_counter is port( rst_n : in std_logic;-- active low synchronous reset clk : in std_logic;-- system clock clr_n : in std_logic;-- active low synchronous clear load_en : in std_logic;-- parallel load active high setting : in std_logic_vector(6 downto 0);-- load value cnt_en_1 : in std_logic;-- enable count 1 cnt_en_2 : in std_logic;-- enable count 2 max_count : out std_logic;-- maximum count flag count : out std_logic_vector(6 downto 0)-- BCD count ); end modulo_60_counter; Write the design description. Use the testbench provided to simulate the modulo_60_counter.

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 23.06.2019 10:30
Would a ps4 wired controller work on an xbox one
Answers: 1
question
Computers and Technology, 23.06.2019 10:50
Your friend kayla is starting her own business and asks you whether she should set it up as a p2p network or as a client-server network. list three questions you might ask to kayla decide which network to use and how her answers to those questions would affect your recommendation.
Answers: 2
question
Computers and Technology, 23.06.2019 13:30
Spoons are designed to be used for: spring hammering. applying body filler. identifying high and low spots. sanding highly formed areas.
Answers: 3
question
Computers and Technology, 23.06.2019 17:00
What does the faves button do? a. users mark a web page as a favorite b. leads other readers to favor a specific page c. readers sort and align their favicons, or favorite icons d. leads users to a message board where they can post questions
Answers: 1
You know the right answer?
While the majority of counters are binary, sometimes it is advantageous to use non-binary counters....
Questions
question
Mathematics, 11.12.2019 02:31
question
History, 11.12.2019 02:31
question
Mathematics, 11.12.2019 02:31
question
Mathematics, 11.12.2019 02:31
Questions on the website: 13722363