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

Other questions on the subject: Computers and Technology

image
Computers and Technology, 21.06.2019 18:00, mterzic1
Assume that you have an array of integers named a. which of these code segments print the same results? int i = 1; while(i < a. length) { system. out. println(a[i]); i++; } int i; for (i = 0; i < a. length; i++) { system. out. println(a[i]); } for (int i : a) { system. out. println(i); } i and ii only ii and iii only i and iii only all three print the same results. all three print different results.
Answers: 3
image
Computers and Technology, 22.06.2019 11:00, najerajulio
What is the foundation for proper monitoring, load balancing and routing in distributed systems
Answers: 3
image
Computers and Technology, 22.06.2019 22:20, kaiyerecampbell95
Pp 4.1 design and implement a class called sphere that contains instance data that represents the sphere’s diameter. define the sphere constructor to accept and initialize the diameter and include getter and setter methods for the diameter. include methods that calculate and return the volume and surface area of the sphere (see pp 3.5 for the formulas). include a tostring method that returns a one-line description of the sphere. create a driver class called multisphere, whose main method instantiates and updates several sphere objects.
Answers: 1
image
Computers and Technology, 23.06.2019 18:30, janny48
How often does colleges update the cost of attendance on their website? . a)every two years b) every four years c) every year d) every semester
Answers: 1
You know the right answer?
While the majority of counters are binary, sometimes it is advantageous to use non-binary counters....

Questions in other subjects:

Konu
Chemistry, 27.08.2019 22:20
Konu
Mathematics, 27.08.2019 22:20