代码搜索结果

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

米勒型状态机.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

带同步复位的状态机.txt

-- State Machine with Asynchronous Reset -- dowload from: www.fpga.com.cn & www.pld.com.cn library ieee; use ieee.std_logic_1164.all; entity stmch1 is port(clk, in1, rst: in std_logic;

带莫尔_米勒输出的状态机.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

莫尔型状态机2.txt

-- Moore State Machine with Concurrent Output Logic -- dowload from: www.fpga.com.cn & www.pld.com.cn library ieee; use ieee.std_logic_1164.all; entity moore1 is port( clk, rst:

莫尔型状态机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:

fsm_demo.c

/* +++Date last modified: 05-Jul-1997 */ /* ** code snippet demonstrating a finite state machine (FSM) */ typedef enum {s0,s1,s2,s3,s4,...,sn,sexit} state; state nextstate; int done = 0;

8.smp_dump.txt

State Machine - |8|ADC0809:inst3|current_state Name current_state.st6 current_state.st5 current_state.st4 current_state.st3 current_state.st2 current_state.st1 current_state.st0 current_state.st0

ps2tolcd.smp_dump.txt

State Machine - |lcd|state Name state.IDLE state.WRITERAM state.SETDDRAM state.SETCGRAM state.SETFUNCTION state.SHIFT state.SWITCHMODE state.SETMODE state.RETURNCURSOR state.CLEAR state.IDLE 0 0

keybaord.smp_dump.txt

State Machine - |ps2_keyboard|ps2_keyboard_interface:inst|m1_state Name m1_state.m1_tx_done_recovery m1_state.m1_tx_reset_timer m1_state.m1_rx_falling_edge_marker m1_state.m1_rx_clk_l m1_state.m1_r

使用变量的状态机.txt

-- State Machine using Variable -- dowload from: www.fpga.com.cn & www.pld.com.cn library ieee; use ieee.std_logic_1164.all; ENTITY fsm2 IS PORT(clock,x : IN BIT; z : OUT BIT); END fsm