Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

logic diagram, 2-bit encoder

Status
Not open for further replies.

mattlyons

Newbie level 2
Joined
Sep 21, 2010
Messages
2
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,294
How would I draw a logic diagram of a 2-bit encoder, a circuit with four input lines, with exactly one of which is high at any instant, and two output lines whose 2-bit binary value tells which input is high?



Encoders have gone completely over my head in class from day one. Some major help is needed please.
 

Truth table

in out
-----------
0001 : 00
0010 : 01
0100 : 10
1000 : 11
else : dont care

if one-hot is guaranteed on input,
out[1] = in[2] | in[3]
out[0] = in[1] | in[3]
 
Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top