📄 cpy_tbl.h
字号:
/*****************************************************************************//* cpy_tbl.h v6.0.3 *//* Copyright (c) 2003 Texas Instruments Incorporated *//* *//* Specification of copy table data structures which can be automatically *//* generated by the linker (using the table() operator in the LCF). *//*****************************************************************************//*****************************************************************************//* Copy Record Data Structure *//*****************************************************************************/typedef struct copy_record{ unsigned int load_addr; unsigned int run_addr; unsigned int size;} COPY_RECORD;/*****************************************************************************//* Copy Table Data Structure *//*****************************************************************************/typedef struct copy_table { unsigned short rec_size; unsigned short num_recs; COPY_RECORD recs[1];} COPY_TABLE;/*****************************************************************************//* Prototype for general purpose copy routine. *//*****************************************************************************/extern void copy_in(COPY_TABLE *tp);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -