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

📄 prepccfg.h

📁 用于TM1300/PNX1300系列DSP(主要用于视频处理)的操作系统pSOS。包括全部源码
💻 H
字号:
/***********************************************************************//*                                                                     *//*   MODULE:  prepccfg.h   1.3                                                *//*   DATE:    17:58:25 - 97/12/05                                                *//*   PURPOSE: Configuration table structure templates                  *//*                                                                     *//*---------------------------------------------------------------------*//*                                                                     *//*           Copyright 1993, Integrated Systems, Inc.                  *//*                      ALL RIGHTS RESERVED                            *//*                                                                     *//*   Permission is hereby granted to licensees of Integrated Systems,  *//*   Inc. products to use or abstract this computer program for the    *//*   sole purpose of implementing a product based on Integrated        *//*   Systems, Inc. products.   No other rights to reproduce, use,      *//*   or disseminate this computer program, whether in part or in       *//*   whole, are granted.                                               *//*                                                                     *//*   Integrated Systems, Inc. makes no representation or warranties    *//*   with respect to the performance of this computer program, and     *//*   specifically disclaims any responsibility for any damages,        *//*   special or consequential, connected with the use of this program. *//*                                                                     *//*---------------------------------------------------------------------*//*                                                                     *//*   This file contains templates for pREPC+ configuration table.      *//*                                                                     *//***********************************************************************/#if defined(__cplusplus)extern "C" {#endif/*---------------------------------------------------------------------*//* Don't allow this file to be included more than once.                *//*---------------------------------------------------------------------*/#ifndef _PREPCCFG_H#define _PREPCCFG_H/*=====================================================================*//* pREPC+ Configuration table structure                                *//*=====================================================================*/typedef struct pREPCConfigTable    {    void (*lc_code)();               /* Start address of pREPC+ code */    void *lc_data;                   /* Start address of pREPC+ data area */    unsigned long lc_datasize;       /* Size of pREPC+ data area */    unsigned long lc_bufsiz;         /* I/O buffer size */    unsigned long reserved1;         /* Reserved, must be 0 */    unsigned long lc_numfiles;       /* Max number of open files per task */    unsigned long lc_waitopt;        /* Wait option for memory allocation */    unsigned long lc_timeopt;        /* Timeout option for memory allocation */    char *lc_tempdir;                /* Pointer to temporary file directory */    char *lc_stdin;                  /* Pointer to stdin */    char *lc_stdout;                 /* Pointer to stdout */    char *lc_stderr;                 /* Pointer to stderr */    unsigned long lc_ssize;          /* Size of print buffer */    unsigned long reserved[3];       /* Reserved, must be zero */    } pREPC_CT;#endif#if defined(__cplusplus)}#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -