How to put synthesizable delay in states of FSM
问题 The code for the FSM which involves particular delay to be executed before moving to another state is as shown below: module INIT_FSM(sys_DLY_100US,sys_CLK,sys_INIT_DONE,iState,sys_RESET); input sys_DLY_100US; input sys_CLK; inout sys_INIT_DONE; output [4:0] iState; input sys_RESET; wire sys_DLY_100US,sys_CLK; reg [4:0] iState; wire sys_INIT_DONE; reg [4:0] NextState; parameter i_NOP=5'b00000; parameter i_PRE=5'b00001; parameter i_tRP=5'b00010; parameter i_AR1=5'b00011; parameter i_tRFC1=5