Right now our combinational logic seems to not work in simulation (modelSim)
Below is a representation of how we are performing combinational logic in an async circuit being driven by a start signal.
`
always @ (start)
begin
finish = 0;
dowork = work;
doother = other;
dodo = do;
finish = 1;
end
`
Right now our combinational logic seems to not work in simulation (modelSim)
Below is a representation of how we are performing combinational logic in an async circuit being driven by a start signal.
`
always @ (start)
begin
finish = 0;
dowork = work;
doother = other;
dodo = do;
finish = 1;
end
`