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.

what is one hot,zero one hot,zero one cold ?

Status
Not open for further replies.

abhineet22

Advanced Member level 4
Joined
Jan 25, 2005
Messages
105
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,296
Location
bangalore
Activity points
1,017
zero one hot

what is one hot,zero one hot,zero one cold assignment?and what r the applications.
 

zero-one-hot

Hi,

This is related to how the states are represented in state machine. That says there are only 5 possible states. One way is to represent this by 5 registers. In this case only 1 register will be 1 (one hot) or 0 (one cold). This way of representing states is good for:
- easier to code (in rtl)
- easy to decode the state (compare to say using 3 bit where 000 is state 1, 001 is state 2 etc)
- 2 transistons in the state register only when state change

Disadvantage is more register is needed compare to binary coding.

Regards,
Eng Han
 

hot zero

hi

one hot is :
0001
0010
0100
1000

zero one hot :
0000
0001
0010
0100

zero one cold :
1111
1110
1101
1011
0111

these encoding styles use as many number of F/F's as many states we are using which is there main drawback.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top