代码搜索结果
找到约 102,371 项符合
State Machine 的代码
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
moore1.vhd
-- 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:
moore2.vhd
-- 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:
statmach.vhd
-- MAX+plus II VHDL Example
-- State Machine
-- Copyright (c) 1994 Altera Corporation
-- download from: www.pld.com.cn & www.fpga.com.cn
Library IEEE ;
use IEEE.std_logic_1164.all ;
ENTIT
ocmj2x8.smp_dump.txt
State Machine - |OCMJ2X8|mstate
Name mstate.wrdata_c mstate.wrdata_b mstate.wrdata_a mstate.clear_c mstate.clear_b mstate.clear_a mstate.idle mstate.delay
mstate.idle 0 0 0 0 0 0 0 0
mstate.cle
lr0.c
/* Generate the nondeterministic finite state machine for bison,
Copyright (C) 1984, 1986, 1989 Free Software Foundation, Inc.
This file is part of Bison, the GNU Compiler Compiler.
Bison is free
带同步复位的状态机.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;
莫尔型状态机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:
hsm.h
/** hsm.h -- Hierarchical State Machine interface
* M. Samek, 01/07/00
*/
#ifndef hsm_h
#define hsm_h
typedef int Event;
struct Msg {
Event evt;
};
class Hsm; /
hsm.cpp
/** hsm.c -- Hierarchical State Machine implementation
* M. Samek, 01/07/00
*/
#include
#include "hsm.h"
/* state machine insturmentation macros */
#ifndef HSM_IN