代码搜索结果
找到约 10,000 项符合
State Machine 的代码
state_machine.asm.qmsg
{ "Info" "IQEXE_SEPARATOR" "" "Info: *******************************************************************" { } { } 3 0 "*******************************************************************" 0 0}
{ "I
state_machine.fit.summary
Fitter Status : Successful - Fri Oct 20 15:51:53 2006
Quartus II Version : 5.1 Build 176 10/26/2005 SJ Full Version
Revision Name : state_machine
Top-level Entity Name : state_machine
Family : Cyc
state_machine.map.rpt
Analysis & Synthesis report for state_machine
Fri Oct 20 15:51:48 2006
Version 5.1 Build 176 10/26/2005 SJ Full Version
---------------------
; Table of Contents ;
---------------------
1.
myftp_state_machine.c
#include "myftp_state_machine.h"
#include "myftp_cmd_string.h"
#include "public.h"
CMD_HANDLE_STATE cmd_state_list[33]={
{"USER", myftp_cmd_handle_user},
{"PASS", myftp_cmd_handle_pass},
{
myftp_state_machine.h
#ifndef _MYFTP_STATE_MACHINE_H
#define _MYFTP_STATE_MACHINE_H
#include "myftp_session.h"
//命令处理状态机
typedef struct cmd_handle_state
{
char* cmd;
int (*cmd_handler)(pMYFTP_SESSION p_these
state_machine.flow.rpt
Flow report for state_machine
Sat Feb 18 14:09:10 2006
Version 5.0 Build 148 04/26/2005 SJ Full Version
---------------------
; Table of Contents ;
---------------------
1. Legal Notice
state_machine.v.bak
module state_machine(clk,rst,c,en);
input clk,rst;
output[7:0] c;
reg[7:0] c;
output[7:0] en;
parameter state0=3'b000,
state1=3'b001,
state2=3'b010,
state3=3'b011,
state4=