代码搜索:Key
找到约 10,000 项符合「Key」的源代码
代码结果 10,000
www.eeworm.com/read/447679/7547421
gif key.gif
www.eeworm.com/read/447105/7557974
lst key.lst
C51 COMPILER V8.02 KEY 03/25/2009 20:03:51 PAGE 1
C51 COMPILER V8.02, COMPILATION OF MODULE KEY
OBJECT MODULE PLACED IN Key
www.eeworm.com/read/447105/7557975
opt key.opt
### uVision2 Project, (C) Keil Software
### Do not modify !
cExt (*.c)
aExt (*.s*; *.src; *.a*)
oExt (*.obj)
lExt (*.lib)
tExt (*.txt; *.h; *.inc)
pExt (*.plm)
CppX (*.cpp)
DaveTm {
www.eeworm.com/read/447105/7557976
plg key.plg
礦ision2 Build Log
Project:
C:\Documents and Settings\Administrator\桌面\Key\Key.uv2
Project File Date: 03/25/2009
Output:
www.eeworm.com/read/447105/7557977
c key.c
#include //头文件
#include
int hang; //定义行号
int lie; //定义列号
int KeyScan(); //子函数声明
void Delay();
void main() //主函数
{
int Key;
while(1){
www.eeworm.com/read/447105/7557979
obj key.obj
www.eeworm.com/read/447105/7557980
hex key.hex
:030000000200E912
:0C00E900787FE4F6D8FD75810F0200D589
:1000D500120003EF64014E700375A080120086E4E0
:0400E500F5A080EC16
:10008600E4750F10750E27F50DF50CE4FFFEFDFC6B
:10009600AB0FAA0EA90DA80CD31200BF
www.eeworm.com/read/447073/7558377
c key.c
#include
#include "key.h"
#include "utili.h"
uchar cur_key;
uchar pre_key;
void (*onKeyUp)(uchar key);
void (*onKeyDown)(uchar key);
void KeyInit()
{
cur_key = 0;
pre_k
www.eeworm.com/read/447073/7558378
h key.h
#ifndef __KEY_H
#define __KEY_H
#include "typedef.h"
#define KEY_UP 0x01
#define KEY_DOWN 0x08
#define KEY_LEFT 0x10
#define KEY_RIGHT 0x04
#define KEY_ENTER 0x02
extern void (*onKeyUp