home *** CD-ROM | disk | FTP | other *** search
-
- /* Define machine inputs */
- #define I_ESC 0
- #define I_Q 1
- #define I_S 2
- /* Define machine actions */
- #define A_DO_ESC 0
- #define A_ESC_Q 1
- #define A_ESC_S 2
- #define A_PASSTHRU 3 /* default */
-
- esc_matrix[2][3] = {
- /* State 'S_START' */
- { I_ESC, A_PASSTHRU, A_PASSTHRU },
- /* State 'S_ESC' */
- { A_PASSTHRU, I_Q, I_S },
- };
-
-