J
Jamie
Guest
I am trying to put together a state machine that is entirely
asynchronous - NO CLK involved at all. But I just cant seem to get it
to synthesize.
I have 2 port inputs, A and B, that I want to trigger the state
transitions and outputs. The structure im trying is something like the
following:
port(OBIT: out std_logic, A: in std_logic, B: in std_logic...)
process(A, B..)
if (A='0') and (B='0') then
OBIT <= '0';
next_state <= S1;
end if;
.....
end process;
asynchronous - NO CLK involved at all. But I just cant seem to get it
to synthesize.
I have 2 port inputs, A and B, that I want to trigger the state
transitions and outputs. The structure im trying is something like the
following:
port(OBIT: out std_logic, A: in std_logic, B: in std_logic...)
process(A, B..)
if (A='0') and (B='0') then
OBIT <= '0';
next_state <= S1;
end if;
.....
end process;