代码搜索结果
找到约 1,930 项符合
Keypad 的代码
keypad.asm
; 16-way keypad support
; Chris Ward, 22/12/1999
; *** KEYSCAN: Keypad matrix scanning routine
; A,X,Y preserved
KEYSCAN PHA
LDA KEYTIMER
BEQ KEYSCAN1
DEC KEYTIMER
KEYSCAN1 LDA KEYNEW
B
key.h
//KEYPAD
#ifndef _KEYPAD_H_
#define _KEYPAD_H_
#define NO_KEY 0Xff
#define KEY_CANCLE 0XE7
extern U16 KeyPad(void);
extern U16 GetKey(void);
extern unsigned char KBhit(void);
#end
tb.asv
/* This test bench simulates an 8x8 keypad by connecting each of the
8 row inputs to each of the 8 column outputs one at a time. There
will be 64 different combinations of these connections which s
tb.v
/* This test bench simulates an 8x8 keypad by connecting each of the
8 row inputs to each of the 8 column outputs one at a time. There
will be 64 different combinations of these connections which s
tb.bak
/* This test bench simulates an 8x8 keypad by connecting each of the
8 row inputs to each of the 8 column outputs one at a time. There
will be 64 different combinations of these connections which s
keypad.c
/* Having initialized the program and the curses library, we set the Keypad mode TRUE. */
#include
#include
#include
#define LOCAL_ESCAPE_KEY 27
int main()
{
keypad.h
/****************************************************************************/
/* TEXAS INSTRUMENTS PROPRIETARY INFORMATION */
/*
keypad.c
/* Having initialized the program and the curses library, we set the Keypad mode TRUE. */
#include
#include
#include
#define LOCAL_ESCAPE_KEY 27
int main()
{
julia.java
package com.javapatterns.command.audioplayer2;
/**
* This is the Client role
*/
public class Julia
{
/**
* @link aggregation
*/
private static Keypad keypad ;
/
keypad.java
package com.javapatterns.command.audioplayer2;
/**
* This is the Invoker role
*/
public class Keypad
{
/**
* @link aggregation
*/
private Command playCmd;
/**