// Synopsys, Inc.
// User: shbyang
// Date: Sat Mar 14 17:19:26 2026

// ==================================================================================================
// This config file prototype is produced from the last run using the complete list of extracted fsms.
// Please note that by providing your own description of the module you are enforcing what will be
// extracted for that module.
// Copy this file to your source directory and edit it as described below,
// then pass the file to VCS using the -cm_fsmcfg command line option.
// FSMs will be extracted normally for any module not mentioned in this file
// ==================================================================================================
// 1. For every module that you want to specify yourself, use:
//      MODULE==name
//    -----------------------------------------------------
//    The following options are defining the behavior on the module level.
//    -----------------------------------------------------
//    1.1  You can control what fsms should be used within this module:
//            FSMS=AUTO
//            this means that you want VCS to automatically extract all
//            detectable FSMs from this module.
//            -----------------------------------------------------
//            FSMS=EXCLUDE
//            this means that you want all fsms except the ones from the list that follows
//            if the list is empty, all fsms will be extracted for this module
//            -----------------------------------------------------
//            FSMS=RESTRICT
//            this means that you want only the fsms from the list that follows
//            if the list is empty, no fsms will be extracted for this module
//            -----------------------------------------------------
//         If none of these options are specified, the program will assume FSMS=RESTRICT
//         -----------------------------------------------------
//     1.2 You can specify that the state with the minimal value should be used as a
//         start state for all sequences in every fsm in the module.
//            FSMS=START_STATE_DFLT
//         For any particular fsm you can overwrite this behavior inside its description.
//    -----------------------------------------------------
// 2. Each fsm description in the list of fsms should be specified as follows:
//      2.1 provide the current state variable declaration:
//          CURRENT= name of the current state variable
//      -----------------------------------------------------
//      2.2 if next state variable is different from the current state provide:
//          NEXT= next state variable
//          if you don't use NEXT=, the program will assume that CURRENT and NEXT are the same
//      -----------------------------------------------------
//      2.3 if you want to provide the restrictive the list of states, provide:
//          STATES= s0,s1 etc. where s0 is either a name or a value of the state
//          if you don't use STATES=, the program will assume that you want to use all states
//      -----------------------------------------------------
//      2.4 if you want to ignore some states, specify them in the following list:
//          STATES_X= s0,s1, etc.
//      -----------------------------------------------------
//      2.5 if you want to mark, that some states should never be reached, specify them as a list:
//          STATES_NEVER= s0,s1, etc.
//      -----------------------------------------------------
//      2.6 similar to the STATES, if you want to provide the restrictive the list of transitions, specify:
//          TRANSITIONS= s0->s1,s1->s2, etc.
//      -----------------------------------------------------
//      2.7 similar to the STATES_X, if you want to ignore some transitions, specify them in the following list:
//          TRANSITIONS_X= s0->s1,s1->s2, etc.
//      -----------------------------------------------------
//      2.8 similar to the STATES_NEVER,if you want to mark, that some transitions should never occur,
//          specify them as a list:
//          TRANSITIONS_NEVER= s0->s1,s1->s2,     etc.
//      -----------------------------------------------------
//      2.9 if you want to specify the start state use:
//          START_STATE= s0
//      -----------------------------------------------------
//      Please note:
//          - that a state in every list can be specified either by name or by value.
//          - in specifying the transitions you can use * in order to refer to 'any' state.
// ==================================================================================================
// Uncomment and modify the following 2 line to override default FSM sequence limits for all FSMs in the design.
//SEQ_NUMBER_MAX=10000
//SEQ_LENGTH_MAX=32

MODULE=pulse_generator
CURRENT=current_state
NEXT=current_state
STATES=SM_IDLE,SM_WAIT,SM_WORK
TRANSITIONS=SM_IDLE->SM_WAIT,
SM_WAIT->SM_IDLE,
SM_WAIT->SM_WORK,
SM_WORK->SM_IDLE
MODULE=spi_sys
CURRENT=state_c
NEXT=qout
STATES=IDLE,READ,RECVCMD,WRITE
TRANSITIONS=IDLE->RECVCMD,
READ->IDLE,
RECVCMD->IDLE,
RECVCMD->READ,
RECVCMD->WRITE,
WRITE->IDLE
MODULE=awg_ctrl
CURRENT=state_c
NEXT=qout
STATES=CMD,HOLD,IDLE,WAVE
TRANSITIONS=CMD->HOLD,
CMD->WAVE,
HOLD->IDLE,
HOLD->WAVE,
IDLE->CMD,
WAVE->HOLD,
WAVE->IDLE
MODULE=ulink_rx_train
CURRENT=state_c
NEXT=qout
STATES=SM_DOWN,SM_EXIT,SM_MATCH,SM_READY
TRANSITIONS=SM_DOWN->SM_MATCH,
SM_EXIT->SM_DOWN,
SM_EXIT->SM_READY,
SM_MATCH->SM_DOWN,
SM_MATCH->SM_EXIT,
SM_READY->SM_DOWN
MODULE=ulink_frame_receiver
CURRENT=word_state_c
NEXT=qout
STATES=S_IDLE,S_WORD0,S_WORD1,S_WORD2,S_WORD3
TRANSITIONS=S_IDLE->S_WORD0,
S_WORD0->S_WORD1,
S_WORD1->S_WORD2,
S_WORD2->S_WORD3,
S_WORD3->S_IDLE
MODULE=ulink_frame_receiver
CURRENT=state_c
NEXT=qout
STATES=ST_CRC,ST_DATA,ST_HEAD,ST_IDLE
TRANSITIONS=ST_CRC->ST_IDLE,
ST_DATA->ST_CRC,
ST_HEAD->ST_DATA,
ST_IDLE->ST_HEAD
