1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Lesechka [4]
2 years ago
5

Design a modified priority encoder that receives an 8-bit input, A7:0and produces a 3-bit output, Y2:0. Y indicates the most sig

nificant bit of the input that is TRUE. Y should be 0 if none of the inputs are TRUE. Give a simplified Boolean equation, sketch a schematic, and write anHDL code

Physics
1 answer:
cupoosta [38]2 years ago
3 0

Answer:

Explanation:

The first image that I attached to this solution is the diagram of a truth table for an 8 to 3 bit encoder.

The second image  gives a sketch of the schematic.

The Boolean expression for the priority encoder including its zero inputs is defined in the third image attached.

Below is a snippet of the code for an 8 to 3 bit Priority encoder:

library IEEE;

use IEEE.STD_LOGIC_1164.all;

entity encoder8_3 is

   port(

       din : in STD_LOGIC_VECTOR(7 downto 0);

       dout : out STD_LOGIC_VECTOR(2 downto 0)

        );

end encoder8_3;

architecture encoder8_3_arc of encoder8_3 is

begin

   dout <= "000" when (din="10000000") else

           "001" when (din="01000000") else

           "010" when (din="00100000") else

           "011" when (din="00010000") else

           "100" when (din="00001000") else

           "101" when (din="00000100") else

           "110" when (din="00000010") else

           "111";

end encoder8_3_arc;

You might be interested in
A ball with mass of 0.050 kg is dropped from a height of h1 = 1 .5 m. It collides with the floor, then bounces up to a height of
Iteru [2.4K]

Answer:

Explanation:

Impulse of reaction force of floor = change in momentum

Velocity of impact = √ 2gh₁

= √ 2 x 9.8 x 1.5 = 5.4 m /s.

velocity of rebound = √2gh₂

= √ 2x 9.8 x 1

= 4.427 m / s.

Initial momentum = .050 x 5.4 = .27 kg m/s

Final momentum = .05 x 4.427 = .22 kg.m/s

change in momentum = .27 - .22 = .05 kg m/s

Impulse = .05 kg m /s

Impulse = force x time

force = impulse / time

.05 / .015 = 3.33 N.

kinetic energy = 1/2 m v²

Initial kinetic energy = 1/2 x .05 x 5.4²

= 0.729 J

Final Kinetic Energy =1/2 x .05 x 4.427²

= 0.489 J

Change in Kinetic energy =0 .24 J

Lost kinetic energy is due to conversion of energy into sound light etc.

4 0
3 years ago
A driver drove for 3 hours at a certain speed. if he drove 12 more miles at the same speed, the distance would be 132 miles. at
Zepler [3.9K]

Answer:

40mph

Explanation:

1st leg DATA:

time = 3 hrs ; speed = r mph ; distance = 3r miles

------------

2nd leg DATA:

speed = r mph ; distance = 12 miles

 

--------------------------------

3r + 12 = 132

3r = 120

rate = 40 mph

4 0
3 years ago
Summarize renewable energy saves water and creates jobs
siniylev [52]

Answer: Solar Energy has been helping the supplying companies to be able to hire more people for jobs which helps 12 times more easier than the US,  Things like solar, geothermal, and wind can help reduce the water resources which helps to save our water conservation rate which was getting increasingly High.

<em>I hope this explanation had helped you today!</em>

4 0
2 years ago
What are the disadvantages of using alcohol instead of mercury in a thermometer ?​
vichka [17]

Answer:

alcohol thermometers are used rather than Mercury thermometers in very cold regions because alcohol has a lower freezing point than Mercury.

Explanation:

6 0
2 years ago
Which statement best describes an atom?
SpyIntel [72]
The correct answer is going to be  <span>C, because in the nucleus of an atom there are protons and electrons; which can't move, and are surrounded by electrons on the electrical cloud</span>
5 0
3 years ago
Read 2 more answers
Other questions:
  • What do we call the quantity of matter that an object contains?
    5·1 answer
  • The mass of a body on the surface of the earth is 12kg. If acceleration due to gravity on
    10·1 answer
  • A hydraulic system for a dentist's chair is designed to be able to lift 3,112 newtons. The surface area over which this force is
    8·1 answer
  • Analysis of the electrocardiogram can be revealed except ________
    15·1 answer
  • The slope of a distance-versus-time graph shows an object's
    7·1 answer
  • TIMED! URGENT! REALLY APPRECIATE HELP!! TYSM!!!!!!
    11·2 answers
  • A student has connected two generator/motors together. The student turns the crank 20 times and noticed the other crank only tur
    7·1 answer
  • A motorcycle has a constant acceleration of 2.5 meters per second squared
    11·1 answer
  • A scientist is examining an unknown solid. which procedure would most likely help determine a chemical property of the substance
    13·1 answer
  • Helen can write 15 postcards in one hour, while Kate can write
    11·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!