代码搜索:State Machine
找到约 10,000 项符合「State Machine」的源代码
代码结果 10,000
www.eeworm.com/read/334563/12588790
hif state_pack.hif
HIF003
--
-- Copyright (C) 1988-2001 Altera Corporation
-- Any megafunction design, and related net list (encrypted or decrypted),
-- support information, device programming or simulation file, an
www.eeworm.com/read/334563/12589342
vhd state_pack.vhd
library ieee;
use ieee.std_logic_1164.all;
package state_pack is
type state is(QA,QB,QC,QD,QE,QF);
end state_pack;
www.eeworm.com/read/334563/12589483
acf state_pack.acf
--
-- Copyright (C) 1988-2001 Altera Corporation
-- Any megafunction design, and related net list (encrypted or decrypted),
-- support information, device programming or simulation file, and any
www.eeworm.com/read/334563/12589494
mmf state_pack.mmf
www.eeworm.com/read/334550/12592537
txt state2.txt
// mz.cpp : Defines the entry point for the console application.
//
class Context;
class State{
void handlepush(Context c);
void handlepull(Context c);
void getcolor();
};
class BlueS
www.eeworm.com/read/334550/12592698
txt state1.txt
class Context{
private:
Color state;
void push(){
//如果当前red 状态 就切换到blue
if (state==Color.red) state=Color.blue;
//如果当前blue 状态 就切换到green
else if (state==Color.blue) state=Color.green;