Understanding Simple State Table.

Thread Starter

JD Dyslexic

Joined Aug 7, 2008
5
I have a the State table.

Present Output Input Next
State Rst State
A B C A B C
----------------------------------
0 0 0 000 0 0 0
010 1 1 1
0x1 1 0 0
1xx 1 0 1
-----------------------------------
0 0 1 xxx 0 0 0
-----------------------------------
0 1 0 xxx 0 0 0
-----------------------------------
0 1 1 Z
xxx 0 0 0
----------------------------------- continues on until present state 111
I have been ask to construct a state map from this table. I am completely lost as I don't even know where to start, any help understanding what the information in the table is telling me is appreciated.

Thanks.
 

hgmjr

Joined Jan 28, 2005
9,027
Can you try posting the table using the CODE tags provided at top of the "Advanced" post window? The icon looks like a pound sign.

example:

Rich (BB code):
ABC   ABC
---   ---  
000   010
111   110
 

Thread Starter

JD Dyslexic

Joined Aug 7, 2008
5
I have the State table
PRESENT-----OUTPUT-----INPUT----NEXT STATE
A B C----------------------RST-------A B C
0 0 0----------------------000-------0 0 0
---------------------------001-------0 0 1
---------------------------01X-------1 1 1
---------------------------1XX-------0 1 1
-------------------------------------------
0 0 1----------------------X00-------0 0 0
-------------------------------------------
0 1 0----------------------XXX-------0 0 0
-------------------------------------------
0 1 1-----------Z--------------------------
---------------------------XXX-------0 0 0
-------------------------------------------
1 0 0 ---------------------0XX-------0 0 0
---------------------------1XX-------1 1 0continues on until present state 111
I have been ask to construct a state map from this table. I am completely lost as I don't even know where to start, any help understanding what the information in the table is telling me is appreciated.

Thanks.
 

hgmjr

Joined Jan 28, 2005
9,027
I have the State table
Rich (BB code):
PRESENT-----OUTPUT-----INPUT----NEXT STATE
A B C-------------------RST-------A B C 
0 0 0-------------------000-------0 0 0
------------------------001-------0 0 1
------------------------01X-------1 1 1
------------------------1XX-------0 1 1
-------------------------------------------
0 0 1-------------------X00-------0 0 0
-------------------------------------------
0 1 0-------------------XXX-------0 0 0
-------------------------------------------
0 1 1-----------Z--------------------------
------------------------XXX-------0 0 0
-------------------------------------------
1 0 0 ------------------0XX-------0 0 0
------------------------1XX-------1 1 0
continues on until present state 111
I have been ask to construct a state map from this table. I am completely lost as I don't even know where to start, any help understanding what the information in the table is telling me is appreciated.

Thanks.

Is this what you intended?

hgmjr
 
Top