?? bccgetch.c
字號:
/*
**===========================================================================
** getch.c
** Copyright (c) 1998 Epson Research and Development, Inc.
** All Rights Reserved.
**===========================================================================
*/
/*-------------------------------------------------------------------------*/
static const char Revision[] = "GETCH.C=$Revision: 1 $";
/*-------------------------------------------------------------------------*/
/* this file implements getch () for
* the Motorola M68332 Business Card Computer (BCC)
* we call routines from cpu32bug.S, contained in libbcc.a
*/
extern int inbyte (void);
/* getch () returns next character from console port */
int getch (void)
{
return inbyte ();
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -