代码搜索:ctrl

找到约 10,000 项符合「ctrl」的源代码

代码结果 10,000
www.eeworm.com/read/148551/12460440

h keyboard16.h

#include "..\inc\def.h" U32 GetKey(); //低16位为键盘号码,高16位对应功能键扫描码 (1有效) void SetFunctionKey(U16 Fnkey); //设定功能键扫描码,1有效 比如ctrl alt U32 GetNoTaskKey();
www.eeworm.com/read/148551/12460505

c exio.c

#include "..\startup\44b.h" #include "..\inc\ExIO.h" void init_ADdevice() { rADCPSR=20; rADCCON=ADCCON_SLEEP; } int GetADresult(int channel) { rADCCON=(channel
www.eeworm.com/read/148550/12460589

h keyboard16.h

#include "..\inc\def.h" U32 GetKey(); //低16位为键盘号码,高16位对应功能键扫描码 (1有效) void SetFunctionKey(U16 Fnkey); //设定功能键扫描码,1有效 比如ctrl alt U32 GetNoTaskKey();
www.eeworm.com/read/131795/14126850

dat funtc104.dat

函数名称: ctrlbrk 函数原型: void ctrlbrk(int (*pfun)(vpod)) 函数功能: 设置当Ctrl-Break组合键按下时,应执行的函数 函数返回: 函数说明: pfun 要执行的函数指针,该函数应返回0值 所属文件:
www.eeworm.com/read/233811/14134559

c srefine.c

/* * Copyright 1997, Regents of the University of Minnesota * * srefine.c * * This file contains code for the separator refinement algortihms * * Started 8/1/97 * George * * $Id: srefine.c,v
www.eeworm.com/read/233811/14134584

c coarsen.c

/* * coarsen.c * * This file contains the driving routines for the coarsening process * * Started 7/23/97 * George * * $Id: coarsen.c,v 1.1 1998/11/27 17:59:12 karypis Exp $ * */ #include
www.eeworm.com/read/233811/14134586

c mcoarsen.c

/* * mcoarsen.c * * This file contains the driving routines for the coarsening process * * Started 7/23/97 * George * * $Id: mcoarsen.c,v 1.1 1998/11/27 17:59:19 karypis Exp $ * */ #includ
www.eeworm.com/read/233811/14134599

c mkmetis.c

/* * Copyright 1997, Regents of the University of Minnesota * * mkmetis.c * * This file contains the top level routines for the multilevel k-way partitioning * algorithm KMETIS. * * Started 7/
www.eeworm.com/read/233704/14142758

bak left_shifter_4.v.bak

module left_shifter_4(result,a,ctrl); output[7:0] result; input[7:0] a; input ctrl; reg[7:0] result; always@(a or ctrl) begin:shifter integer i; result=a; if(ctrl==1) begin
www.eeworm.com/read/233704/14142767

v left_shifter_4.v

module left_shifter_4(result,a,ctrl); output[7:0] result; input[7:0] a; input ctrl; reg[7:0] result; always@(a or ctrl) begin:shifter integer i; result=a; if(ctrl==1) begin