代码搜索结果
找到约 102,371 项符合
State Machine 的代码
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
ctl_lcd.smp_dump.txt
State Machine - |Ctl_LCD|LCD:inst|Interupt
Name Interupt.WR_hanzi_over Interupt.WR_hanzi Interupt.WR_hanzi0
Interupt.WR_hanzi 0 0 0
Interupt.WR_hanzi0 0 1 1
Interupt.WR_hanzi_over 1 1 0
S
ex_p4_18_hdlc_fsm.vhd
--FINITE STATE MACHINE TO DETECT 01111110 SEQUENCE
--Overlapping sequences are not allowed
entity FSM_HDLCFLAG is
port(RST,X,CLK :in BIT; Z: out BIT);
end FSM_HDLCFLAG;
architecture DF of FSM_HDLCFL
ex_p4_22_dual_seq_fsm.vhd
--FINITE STATE MACHINE TO DETECT
-- either a ?10111? or ?11001? sequence.
--Overlapping sequences are allowed
entity FSM_DUAL_SEQ is
port(RST,X,CLK :in BIT; Z: out BIT);
end FSM_DUAL_SEQ;
architec
ex_p6_15_fsm_rand_test.vhd
--FINITE STATE MACHINE TO DETECT 1011 SEQUENCE
package state_def is
type STATE_TABLE is(RESET,GOT1,GOT10,GOT101);
end state_def;
use work.state_def.all;
entity FSM1011 is
port(RST,X,CLK :in BIT; Z
statmach.vhd
-- MAX+plus II VHDL Example
-- State Machine
-- Copyright (c) 1994 Altera Corporation
ENTITY statmach IS
PORT(
clk : IN BIT;
input : IN BIT;
reset : IN BIT;
output : OUT BIT);
END
statmach.v
// MAX+plus II Verilog Example
// State Machine
// Copyright (c) 1997 Altera Corporation
module statmach(clk, in, reset, out);
input clk, in, reset;
output out;
reg out;
reg sta
gollstt.v
/*
Gollstt.vhd
-- State machine to implement handshake between two unsynchronized pseudo-random
-- sequence generators. Using this handshake technique, one of the sequence generators
-- can be imp
gollstt.v
/*
Gollstt.vhd
-- State machine to implement handshake between two unsynchronized pseudo-random
-- sequence generators. Using this handshake technique, one of the sequence generators
-- can be imp
gollstt.v.bak
/*
Gollstt.vhd
-- State machine to implement handshake between two unsynchronized pseudo-random
-- sequence generators. Using this handshake technique, one of the sequence generators
-- can be imp