📄 devices.c
字号:
/***************************************************************************
*
* Copyright (c) 1995 MICROTEC RESEARCH INC.
*
* All rights reserved. MICROTEC's source code is an unpublished
* work and the use of a copyright notice does not imply otherwise.
* This source code contains confidential, trade secret material of
* MICROTEC. Any attempt or participation in deciphering, decoding,
* reverse engineering or in any way altering the source code is
* strictly prohibited, unless the prior written consent of
* MICROTEC is obtained.
*
*
* Module Name: devices.tpl
*
* Identification: 1.4 devices.tpl
*
* Date: 4/25/94 14:52:36
*
****************************************************************************
*/
#include <boot.h>
extern logio_method_t logio_board_method;
extern logio_method_t logio_screen_method;
extern logio_method_t logio_timer_1_method;
extern logio_method_t logio_serial_2_method;
extern logio_method_t logio_ether_1_method;
const boot_device_t boot_device_table[] = {
"DEV_BOARD", &logio_board_method,
"DEV_SCREEN", &logio_screen_method,
"DEV_TIMER_1", &logio_timer_1_method,
"DEV_SERIAL_2", &logio_serial_2_method,
"DEV_ETHER_1", &logio_ether_1_method,
0, 0
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -