代码搜索结果

找到约 102,371 项符合 State Machine 的代码

帶莫爾_米勒輸出的狀態機.txt

-- State Machine with Moore and Mealy outputs -- dowload from: www.fpga.com.cn & www.pld.com.cn library ieee; use ieee.std_logic_1164.all; entity mealy1 is port( clk, rst: in

莫爾形狀態機1.txt

-- Moore State Machine with explicit state encoding -- dowload from: www.fpga.com.cn & www.pld.com.cn library ieee; use ieee.std_logic_1164.all; entity moore2 is port( clk, rst:

米勒形狀態機.txt

-- Mealy State Machine with Registered Outputs -- dowload from: www.fpga.com.cn & www.pld.com.cn library ieee; use ieee.std_logic_1164.all; entity mealy1 is port( clk, rst: in

pppfsm.c

/* * PPPFSM.C -- PPP Finite State Machine * * This implementation of PPP is declared to be in the public domain. * * Acknowledgements and correction history may be found in PPP.C */ #i

fsm.c

/* ** code snippet demonstrating a finite state machine (FSM) */ typedef enum {s0,s1,s2,s3,s4,...,sn,sexit} state; state nextstate; int done = 0; nextstate = s0; /* set up to start with

onehot_rtl.v

/*********************************************************/ // MODULE: One-Hot state machine // // FILE NAME: onehot_rtl.v // VERSION: 1.0 // DATE: January 1, 1999 // AUTHOR: Bob Zeidman, Ze

ps2.smp_dump.txt

State Machine - |manage_data|mouse:u1|m2_state Name m2_state.m2_await_response m2_state.m2_error_no_ack m2_state.m2_data_high_3 m2_state.m2_data_low_3 m2_state.m2_data_high_2 m2_state.m2_data_low_2

netfsm.c

/***************************************************************************** * netfsm.c - Network Control Protocol Finite State Machine program file. * * portions Copyright (c) 1997 by Global Ele

netfsm.c

/***************************************************************************** * netfsm.c - Network Control Protocol Finite State Machine program file. * * portions Copyright (c) 1997 by Global Ele

fsm.c

/* ** code snippet demonstrating a finite state machine (FSM) */ typedef enum {s0,s1,s2,s3,s4,...,sn,sexit} state; state nextstate; int done = 0; nextstate = s0; /* set up to start with