cpy_tbl.h

来自「Montavista Linux 下的多平台编译软件xdc」· C头文件 代码 · 共 34 行

H
34
字号
/*****************************************************************************//* 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 + =
减小字号Ctrl + -
显示快捷键?