代码搜索:Key
找到约 10,000 项符合「Key」的源代码
代码结果 10,000
www.eeworm.com/read/288383/8636839
cmd key.cmd
-w
-stack 400h
-heap 100
-l rts.lib
MEMORY
{
PAGE 0:
VECT : o=80h,l=80h
PRAM : o=100h,l=1f00h
PAGE 1:
DRAM : o=2000h,l=1000h
}
SECTIONS
{
.text : {}> PRAM
www.eeworm.com/read/288383/8636849
pjt key.pjt
; Code Composer Project File, Version 2.0 (do not modify or remove this line)
[Project Settings]
ProjectDir="c:\icetek-vc5416-edulab\lab0404-Key\"
ProjectType=Executable
CPUFamily=TMS320C54XX
T
www.eeworm.com/read/288383/8636852
c key.c
/////////////////////////////////////////////////
// Example For ICETEK-VC5416-EDU //
// CTR Version : V4 //
// Filename: Key.c
www.eeworm.com/read/288383/8636858
paf key.paf
www.eeworm.com/read/431831/8651274
v key.v
module key(clk,key,en);
input clk,key;
output en;
reg en;
reg[1:0]state,nextstate;
parameter s_0=2'b00,s_1=2'b01,s_2=2'b10,s_3=2'b11;
always@(posedge clk)
begin
state=nextstate;
end
always@
www.eeworm.com/read/431831/8651293
bsf key.bsf
/*
WARNING: Do NOT edit the input and output ports in this file in a text
editor if you plan to continue editing the block that represents it in
the Block Editor! File corruption is VERY likely to
www.eeworm.com/read/387761/8655677
gif key.gif
www.eeworm.com/read/387715/8658055
asm key.asm
//======================================================
// The information contained herein is the exclusive property of
// Sunnnorth Technology Co. And shall not be distributed, reproduced,
//
www.eeworm.com/read/387715/8658087
inc key.inc
.external F_Key_Init
.external F_Key_Scan
.external F_Key_Get
.define KEY_1 0x01
.define KEY_2 0x02
.define KEY_3 0x04
www.eeworm.com/read/387715/8658104
h key.h
#ifndef __KEY_h__
#define __KEY_h__
// write your header here
void Key_Init(void);
void Key_Scan(void);
unsigned Key_Get(void);
#define KEY8 0x01
#define KEY7 0x02
#define KEY6 0x04
#d