⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cpy_tbl.h

📁 Montavista Linux 下的多平台编译软件xdc
💻 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 + -