亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? adsp-bf561_v2_tinyboards.ldf

?? BlackFin與攝像頭的接口程序
?? LDF
?? 第 1 頁 / 共 4 頁
字號(hào):
/*
** Default LDF for C, C++ and assembly applications targeting ADSP-BF561.
** Builds a single DXE for either COREA (default) or COREB (if macro defined)
** Partitions shared memory between two cores.
** 
** There are a number of configuration macros that may be specified as a 
** result of use of certain compiler switches or by linker flags directly.
** The options are:
** 
** __WORKAROUNDS_ENABLED
**   Defined by compiler to direct LDF to link with libraries that have 
**   been built with hardware errata workarounds enabled.
** USE_INSTRUCTION_CACHE, USE_DATA_A_CACHE, USE_DATA_B_CACHE, USE_CACHE
**   Avoids use of regions of L1 which will be configured for cache use. 
**   Use implies the presence SDRAM (external) memory.
** __ADI_MULTICORE
**   Causes the LDF to use thread-safe support and multicore support to 
**   ensure atomic access to global data and per-core private data. Defined 
**   when compiler switch -multicore is used.
** USE_SDRAM
**   Makes SDRAM available as standard program and data memory.
** USE_SCRATCHPAD_STACK
**   Use scratchpad for system stack. Note only 4k memory.
** USE_SCRATCHPAD_HEAP
**   Use scratchpad for dynamic heap allocation. Note only 4k memory.
** USE_L2_STACK, USE_SDRAM_STACK
**   Use L2/SDRAM for system stack rather than L1 default. Should allow for
**   much larger stack but likely to have a significant performance
** USE_L2_HEAP, USE_SDRAM_HEAP
**   Use L2/SDRAM for dynamic heap allocation rather than L1 default. Should
**   result in a much larger heap being available but can have a sig
**   performance impact.
** USER_CRT
**   Specifies a custom or System Builder generated CRT startup object to use.
** USER_CPLBTAB 
**   Specifies a custom or System Builder generated CPLB configuration 
**   definition.
** USE_FILEIO
**   Normally defined and causes linking of I/O support libraries.
** IEEEFP
**   Defined by the compiler when switch -ieee-fp is used to direct the
**   use of slower but more IEEE conformant floating-point emulation.
** _DINKUM_IO
**   Defined by the compiler when switch -full-io is used to direct the
**   use of the slower but more conformant Dinkum libc I/O support instead
**   of libio.
** USE_PROFILER0, USE_PROFILER1, and USE_PROFILER2
**   Defined by compiler when switch -p[1|2] is used to direct LDF to link
**   with suitable profiling support.
** __NO_STD_LIB
**   Defined by the compiler when switch -no-std-lib is used and causes
**   the LDF to avoid using the standard VisualDSP++ library search path.
** __MEMINIT__
**   Macro defined by the linker when -meminit is used to enable runtime
**   initialization.
*/

ARCHITECTURE(ADSP-BF561)

/*
** include standard VisualDSP++ installation libraries in search path
*/
#if !defined(__NO_STD_LIB)
SEARCH_DIR( $ADI_DSP/Blackfin/lib )
#endif

#if !defined(COREA) && !defined(COREB)
#  define COREA  /* default to COREA if not specified */
#endif

/*
** define macros used to check cache configuration
*/
# if defined(USE_INSTRUCTION_CACHE) || \
     defined(USE_DATA_A_CACHE) || defined(USE_DATA_B_CACHE)
#  define USE_CACHE_PARTS 1
# else
#  define USE_CACHE_PARTS 0
#endif
#define INSTR_CACHE \
    ( defined(USE_CACHE) && \
     ( ( defined(USE_INSTRUCTION_CACHE) || !USE_CACHE_PARTS ) ) )
#define DATAA_CACHE \
    ( defined(USE_CACHE) && \
     ( ( defined(USE_DATA_A_CACHE) || defined(USE_DATA_B_CACHE) || \
         !USE_CACHE_PARTS ) ) )
#define DATAB_CACHE \
    ( defined(USE_CACHE) && \
     ( ( defined(USE_DATA_B_CACHE) || !USE_CACHE_PARTS ) ) )

/*
** define various macros used to reduce complexity of LDF
*/
#if defined(__WORKAROUNDS_ENABLED)
#  define RT_LIB_NAME(x) lib ## x ## y.dlb
#  define RT_OBJ_NAME(x) x ## y.doj
#  if defined(__ADI_LIBEH__)
#    define RT_LIB_NAME_EH(x) lib ## x ## yx.dlb
#    if defined(__ADI_MULTICORE)
#      define RT_LIB_NAME_MC(x)   lib ## x ## mty.dlb
#      define RT_LIB_NAME_MCEH(x) lib ## x ## mtyx.dlb
#    else
#      define RT_LIB_NAME_MC(x)   lib ## x ## y.dlb
#      define RT_LIB_NAME_MCEH(x) lib ## x ## yx.dlb
#    endif
#  else /* __ADI_LIBEH__ */
#    define RT_LIB_NAME_EH(x) lib ## x ## y.dlb
#    if defined(__ADI_MULTICORE)
#      define RT_LIB_NAME_MC(x)   lib ## x ## mty.dlb
#      define RT_LIB_NAME_MCEH(x) lib ## x ## mty.dlb
#    else
#      define RT_LIB_NAME_MC(x)   lib ## x ## y.dlb
#      define RT_LIB_NAME_MCEH(x) lib ## x ## y.dlb
#    endif
#  endif
#else /* __WORKAROUNDS_ENABLED */
#  define RT_LIB_NAME(x) lib ## x ## .dlb
#  define RT_OBJ_NAME(x) x ## .doj
#  if defined(__ADI_LIBEH__)
#    define RT_LIB_NAME_EH(x) lib ## x ## x.dlb
#    if defined(__ADI_MULTICORE)
#      define RT_LIB_NAME_MC(x)   lib ## x ## mt.dlb
#      define RT_LIB_NAME_MCEH(x) lib ## x ## mtx.dlb
#    else
#      define RT_LIB_NAME_MC(x)   lib ## x ## .dlb
#      define RT_LIB_NAME_MCEH(x) lib ## x ## x.dlb
#    endif
#  else /* __ADI_LIBEH__ */
#    define RT_LIB_NAME_EH(x) lib ## x ## .dlb
#    if defined(__ADI_MULTICORE)
#      define RT_LIB_NAME_MC(x)   lib ## x ## mt.dlb
#      define RT_LIB_NAME_MCEH(x) lib ## x ## mt.dlb
#    else
#      define RT_LIB_NAME_MC(x)   lib ## x ## .dlb
#      define RT_LIB_NAME_MCEH(x) lib ## x ## .dlb
#    endif
#  endif
#endif /* __WORKAROUNDS_ENABLED */

#if !defined(USE_L1DATA_STACK)
#  define USE_L1DATA_STACK \
    !defined(USE_SCRATCHPAD_STACK) && !defined(USE_L2_STACK) && \
    !defined(USE_SDRAM_STACK)
#endif

#if !defined(USE_L1DATA_HEAP)
#  define USE_L1DATA_HEAP \
    !defined(USE_SCRATCHPAD_HEAP) && !defined(USE_L2_HEAP) && \
    !defined(USE_SDRAM_HEAP)
#endif

/*
** minimum sizes of the stack and heap allocated
*/
#define STACK_SIZE 8K
#define HEAP_SIZE 7K
#define STACKHEAP_SIZE 15K

/*
** decide if to include mappings to SDRAM or not
*/
#if !defined(USE_SDRAM) && \
    ( defined(USE_CACHE) || defined(USE_SDRAM_STACK) || \
      defined(USE_SDRAM_HEAP) )
#  define USE_SDRAM
#endif

/*
** default to USE_FILEIO support
*/
#if !defined(USE_FILEIO)
#  define USE_FILEIO 1
#endif

/*
** determine which CRT to use 
*/
#if defined(USER_CRT)
#  define CRT USER_CRT
#else
#  if defined(USE_PROFILER) 
#    if USE_FILEIO
#      if defined(__cplusplus)
#      define CRT RT_OBJ_NAME(crtsfpc561)
#      else
#      define CRT RT_OBJ_NAME(crtsfp561)
#      endif
#    else
#      if defined(__cplusplus)
#      define CRT RT_OBJ_NAME(crtspc561)
#      else
#      define CRT RT_OBJ_NAME(crtsp561)
#      endif
#    endif
#  else
#    if USE_FILEIO
#      if defined(__cplusplus)
#      define CRT RT_OBJ_NAME(crtsfc561)
#      else
#      define CRT RT_OBJ_NAME(crtsf561)
#      endif
#    else
#      if defined(__cplusplus)
#      define CRT RT_OBJ_NAME(crtsc561)
#      else
#      define CRT RT_OBJ_NAME(crts561)
#      endif
#    endif
#  endif
#endif

/*
** define linked objects list
*/
$OBJECTS = 
   CRT,                       /* C startup object                 */
   $COMMAND_LINE_OBJECTS ,    /* defined by linker                */
#if defined(__ADI_MULTICORE)
   RT_OBJ_NAME(mc_data561),   /* multi-core shared data           */
#endif
#if !defined(__ADI_MULTICORE)
#if defined(USE_PROFILER0)    /* Profiling initialization funcs.  */
   RT_OBJ_NAME(prfflg0_561),
#elif defined(USE_PROFILER1)
   RT_OBJ_NAME(prfflg1_561),
#elif defined(USE_PROFILER2)
   RT_OBJ_NAME(prfflg2_561),
#endif
#endif
#if defined(__MEMINIT__)
   __initsbsz561.doj,         /* meminit support                  */
#endif
#if defined(USER_CPLBTAB)
   USER_CPLBTAB ,             /* custom cplb configuration        */
#else
#if defined(COREB)
   cplbtab561b.doj,           /* default cplb config for core b   */
#else
   cplbtab561a.doj,           /* default cplb config for core a   */
#endif
#endif
   RT_OBJ_NAME(crtn561)       /* CRT end object                   */
   ;

/*
** define linked library list
*/
$LIBRARIES = 
#if defined(__ADI_MULTICORE)
   RT_LIB_NAME(mc561),        /* multi-core library               */
#endif
   RT_LIB_NAME_MC(small561),  /* Supervisor mode support routines */
#if defined(_DINKUM_IO)
   RT_LIB_NAME_MC(c561),      /* ANSI C (and IO) run-time library */
   RT_LIB_NAME_MC(io561),     /* Fast IO and host IO support      */
#else
   RT_LIB_NAME_MC(io561),     /* Fast IO and host IO support      */
   RT_LIB_NAME_MC(c561),      /* ANSI C (and IO) run-time library */
#endif
#if defined(USE_FILEIO) || defined(USE_PROFGUIDE)
   RT_LIB_NAME_MC(rt_fileio561), /* Run-time Support with File IO */
#else
   RT_LIB_NAME_MC(rt561),     /* Run-time Support without File IO */
#endif
   RT_LIB_NAME_MC(event561),  /* Interrupt handler support        */
   RT_LIB_NAME_MCEH(cpp561),  /* ANSI C++ run-time library        */
   RT_LIB_NAME_MCEH(cpprt561),  /* C++ run-time support library   */
   RT_LIB_NAME_MC(x561),      /* C++ exception handling support   */
#if defined(IEEEFP)
   RT_LIB_NAME(sftflt561),    /* IEEE floating-point emulation    */
#endif
   RT_LIB_NAME(f64ieee561),   /* 64-bit floating-point support    */
   RT_LIB_NAME(dsp561),       /* DSP run-time library             */
#if !defined(IEEEFP)
   RT_LIB_NAME(sftflt561),    /* IEEE floating-point emulation    */
#endif
   RT_LIB_NAME(etsi561),      /* ETSI run-time support library    */
#if !defined(__ADI_MULTICORE)
   RT_LIB_NAME(profile561),   /* Profile support routines         */
#endif
   RT_LIB_NAME(ssl561),       /* system services library          */
   RT_LIB_NAME(drv561)        /* device drivers                   */
   ;


/*
** List of objects and libraries which prefer internal memory as
** specified by prefersMem attribute.
*/
$OBJS_LIBS_INTERNAL =
   $OBJECTS{prefersMem("internal")},
   $LIBRARIES{prefersMem("internal")}
   ;

/*
** List of objects and libraries which don't have a preference for
** external memory as specified by prefersMem attribute.
*/
$OBJS_LIBS_NOT_EXTERNAL =
   $OBJECTS{!prefersMem("external")},
   $LIBRARIES{!prefersMem("external")}
   ;

/*
** Memory map.
**
** 0xFFE00000 - 0xFFFFFFFF  Core MMR registers (2MB per core)
** 0xFFC00000 - 0xFFDFFFFF  System MMR registers (2MB)
** CoreA:
** 0xFFB01000 - 0xFFBFFFFF  Reserved
** 0xFFB00000 - 0xFFB00FFF  Scratch SRAM (4K)
** 0xFFA14000 - 0xFFAFFFFF  Reserved
** 0xFFA10000 - 0xFFA13FFF  Code SRAM / cache (16K)
** 0xFFA04000 - 0xFFA0FFFF  Reserved
** 0xFFA00000 - 0xFFA03FFF  Code SRAM (16K)
** 0xFF908000 - 0xFF9FFFFF  Reserved
** 0xFF904000 - 0xFF907FFF  Data Bank B SRAM / cache (16K)
** 0xFF900000 - 0xFF903FFF  Data Bank B SRAM (16K)
** 0xFF804000 - 0xFF807FFF  Data Bank A SRAM / cache (16K)
** 0xFF800000 - 0xFF803FFF  Data Bank A SRAM (16K)
** 0xFF400000 - 0xFF7FFFFF  Reserved
** CoreB:
** 0xFF701000 - 0xFFBFFFFF  Reserved
** 0xFF700000 - 0xFF700FFF  Scratch SRAM (4K)
** 0xFF614000 - 0xFF6FFFFF  Reserved
** 0xFF610000 - 0xFF613FFF  Code SRAM / cache (16K)
** 0xFF604000 - 0xFF60FFFF  Reserved
** 0xFF600000 - 0xFF603FFF  Code SRAM (16K)
** 0xFF508000 - 0xFF5FFFFF  Reserved
** 0xFF504000 - 0xFF507FFF  Data Bank B SRAM / cache (16K)
** 0xFF500000 - 0xFF503FFF  Data Bank B SRAM (16K)
** 0xFF404000 - 0xFF407FFF  Data Bank A SRAM / cache (16K)
** 0xFF400000 - 0xFF403FFF  Data Bank A SRAM (16K)
** Shared mem:
** 0xFFB20000 - 0xFF3FFFFF  Reserved
** 0xFFB00000 - 0xFFB1FFFF  L2 SRAM (128K)
** 0xEF000800 - 0xFEAFFFFF  Reserved
** 0xEF000000 - 0xEF007FFF  Boot ROM
** 0x30000000 - 0xEEFFFFFF  Reserved
** 0x2C000000 - 0x2FFFFFFF  ASYNC MEMORY BANK 3 (64MB)
** 0x20200000 - 0x202FFFFF  ASYNC MEMORY BANK 2 (1MB)
** 0x20100000 - 0x201FFFFF  ASYNC MEMORY BANK 1 (1MB)
** 0x20000000 - 0x200FFFFF  ASYNC MEMORY BANK 0 (1MB)
** 0x00000000 - 0x04000000  EZKIT SDRAM MEMORY (64MB)
** 0x00000000 - 0x1FFFFFFF  SDRAM MEMORY (0-512MB)
** 
** Notes:
** FEB1FC00->FEB1FFFF : Reseved in boot Phase for 2nd stage boot loader
**
*/
MEMORY
{
  /* ----- Core A ----- */
  MEM_A_L1_SCRATCH      { START(0xFFB00000) END(0xFFB00FFF) TYPE(RAM) WIDTH(8) }
  MEM_A_L1_CODE_CACHE   { START(0xFFA10000) END(0xFFA13FFF) TYPE(RAM) WIDTH(8) }
  MEM_A_L1_CODE         { START(0xFFA00000) END(0xFFA03FFF) TYPE(RAM) WIDTH(8) }
#if DATAB_CACHE
  MEM_A_L1_DATA_B_CACHE { START(0xFF904000) END(0xFF907FFF) TYPE(RAM) WIDTH(8) }
  MEM_A_L1_DATA_B       { START(0xFF900000) END(0xFF903FFF) TYPE(RAM) WIDTH(8) }
#else  /* DATAB_CACHE */
  MEM_A_L1_DATA_B       { START(0xFF900000) END(0xFF907FFF) TYPE(RAM) WIDTH(8) }
#endif /* DATAB_CACHE */
#if DATAA_CACHE 

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
av影院午夜一区| 欧美主播一区二区三区| 欧美精品一区二区三区在线播放 | 久久精品国产一区二区三| 欧美色倩网站大全免费| 亚洲综合av网| 在线视频综合导航| 一区二区三区国产豹纹内裤在线| 色诱亚洲精品久久久久久| 有码一区二区三区| 在线视频一区二区免费| 亚洲宅男天堂在线观看无病毒| 欧美在线视频你懂得| 一区二区三区四区高清精品免费观看| 91蝌蚪porny| 亚洲一区二区综合| 欧美高清视频一二三区| 麻豆精品一二三| 精品国产人成亚洲区| 国产一区二区三区四区五区美女 | 亚洲午夜三级在线| 欧美日韩国产成人在线91| 日韩影院在线观看| 日韩一级完整毛片| 韩国av一区二区三区四区 | 555www色欧美视频| 久久99最新地址| 国产欧美综合色| 99精品久久只有精品| 亚洲国产一区二区视频| 日韩一区二区在线看片| 国产一区二区三区四区在线观看| 日本一区二区在线不卡| 日本韩国精品在线| 日一区二区三区| 久久先锋影音av鲁色资源 | 国产在线精品一区二区不卡了| 久久久噜噜噜久久中文字幕色伊伊 | 欧美精品乱码久久久久久按摩| 日本视频一区二区| 久久久精品黄色| 91在线一区二区| 午夜私人影院久久久久| 精品人在线二区三区| 成人性色生活片| 亚洲妇熟xx妇色黄| 久久亚洲精精品中文字幕早川悠里| 懂色av一区二区夜夜嗨| 亚洲一区二区高清| 久久综合999| 在线免费观看一区| 九色综合狠狠综合久久| 中文字幕在线一区免费| 欧美精品视频www在线观看 | 精品亚洲成a人| 亚洲欧洲av一区二区三区久久| 欧美日韩中文字幕精品| 国产一区二区在线看| 一区二区三区鲁丝不卡| 26uuu久久天堂性欧美| 色哟哟精品一区| 精品一区二区三区在线播放视频 | 激情综合色综合久久综合| 中文字幕一区视频| 欧美一区二区三区四区视频 | 97se亚洲国产综合在线| 奇米一区二区三区| 亚洲视频一区在线| 日韩一级片网站| 一本色道久久综合狠狠躁的推荐 | av激情亚洲男人天堂| 日韩电影在线观看一区| 中文字幕一区二区三区蜜月| 欧美一区二区高清| 色偷偷88欧美精品久久久| 狠狠色狠狠色综合| 亚洲一区二区视频在线观看| 国产欧美一区二区精品性色超碰 | 亚洲一区二区三区在线播放| 久久久久久麻豆| 在线播放91灌醉迷j高跟美女 | 欧美日韩免费一区二区三区视频| 国产一区二区三区香蕉| 午夜精品久久一牛影视| 亚洲欧洲另类国产综合| 精品精品国产高清a毛片牛牛| 色婷婷一区二区| 国产成人精品一区二| 日韩一区精品字幕| 一区二区欧美国产| 亚洲国产精品国自产拍av| 日韩欧美一级二级三级久久久| 一本大道久久精品懂色aⅴ | 国内精品视频666| 天天综合天天综合色| 亚洲色图色小说| 国产女人18毛片水真多成人如厕 | 国产精品一二三四区| 首页国产欧美日韩丝袜| 亚洲欧美日韩久久| 国产欧美日本一区视频| 欧美va亚洲va在线观看蝴蝶网| 欧美日韩精品福利| 色婷婷久久久亚洲一区二区三区| 国产一区二区三区综合| 蜜臀久久99精品久久久画质超高清 | 国产精品萝li| 久久久久国产精品麻豆ai换脸| 日韩欧美中文字幕公布| 欧美日韩久久一区| 在线观看免费视频综合| 色呦呦国产精品| 91欧美一区二区| 99精品久久免费看蜜臀剧情介绍| 高潮精品一区videoshd| 国产精品一区一区| 国产最新精品精品你懂的| 极品瑜伽女神91| 精品一区二区国语对白| 麻豆专区一区二区三区四区五区| 婷婷中文字幕综合| 亚洲va天堂va国产va久| 午夜影院在线观看欧美| 亚洲国产wwwccc36天堂| 亚洲影院理伦片| 亚洲成人先锋电影| 三级欧美在线一区| 舔着乳尖日韩一区| 日本在线播放一区二区三区| 日韩综合一区二区| 美女脱光内衣内裤视频久久影院| 日产欧产美韩系列久久99| 蜜桃久久精品一区二区| 蜜桃一区二区三区在线观看| 久久精品99国产精品| 久久国产生活片100| 国产综合久久久久影院| 国产精品911| 成人午夜视频在线观看| 99re热这里只有精品视频| 91社区在线播放| 欧美最猛黑人xxxxx猛交| 欧美日韩亚洲综合在线| 日韩三级.com| 日本一区二区视频在线| 亚洲欧洲av另类| 亚洲国产成人tv| 久久精品国产成人一区二区三区| 国产资源在线一区| 成人激情免费视频| 99精品视频在线免费观看| 在线观看视频一区二区欧美日韩| 欧美伦理视频网站| 欧美va亚洲va| 中文字幕欧美日本乱码一线二线 | 亚洲天堂久久久久久久| 亚洲一区二区高清| 久久精品国产亚洲5555| 成人短视频下载| 欧美在线播放高清精品| 日韩欧美激情四射| 国产精品网站在线播放| 一区二区三区日韩在线观看| 日本美女视频一区二区| 国产老女人精品毛片久久| 北条麻妃国产九九精品视频| 欧美午夜电影网| 精品福利av导航| 亚洲精品视频免费观看| 日韩激情一二三区| 丁香天五香天堂综合| 91成人免费在线| 精品欧美乱码久久久久久| 国产精品欧美极品| 亚洲成人动漫在线免费观看| 寂寞少妇一区二区三区| 色婷婷av一区二区| 精品欧美一区二区久久| 亚洲日本免费电影| 麻豆精品一区二区三区| 99久久99精品久久久久久| 日韩西西人体444www| 国产精品国产三级国产普通话99 | 91精品国产一区二区| 日本一区二区三级电影在线观看| 一区二区三区日韩欧美| 极品少妇xxxx精品少妇偷拍| 色偷偷88欧美精品久久久| 精品国产免费人成在线观看| 亚洲精品videosex极品| 国模大尺度一区二区三区| 色94色欧美sute亚洲13| 2024国产精品| 亚洲国产美女搞黄色| 国产精品99久久久久久有的能看| 欧美日韩午夜精品| 国产精品大尺度| 精彩视频一区二区| 欧美日韩精品是欧美日韩精品| 欧美激情在线一区二区三区|