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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? adsp-bf531.ldf

?? blackfin531處理器實時時鐘程序,一秒一秒走,適用于初學者學習硬件blackfin系列dsp編程
?? LDF
?? 第 1 頁 / 共 2 頁
字號:
/*
** Default LDF for C, C++ and assembly applications targeting ADSP-BF531.
** 
** 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.
** 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_SDRAM_STACK
**   Use SDRAM for system stack rather than L1 default. Should allow for
**   much larger stack but likely to have a significant performance impact.
** USE_SDRAM_HEAP
**   Use SDRAM for dynamic heap allocation rather than L1 default. Should 
**   result in a much larger heap being available but can have a significant
**   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-BF531)

/*
** include standard VisualDSP++ installation libraries in search path
*/
#if !defined(__NO_STD_LIB)
SEARCH_DIR( $ADI_DSP/Blackfin/lib )
#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 ) ) )
#if USE_CACHE_PARTS && DATAB_CACHE /* { */
#  warning datab cache not supported for ADSP-BF531
#endif /* DATAB_CACHE } */

/*
** 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
#  else /* __ADI_LIBEH__ */
#    define RT_LIB_NAME_EH(x) lib ## x ## y.dlb
#  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
#  else /* __ADI_LIBEH__ */
#    define RT_LIB_NAME_EH(x) lib ## x ## .dlb
#  endif
#endif /* __WORKAROUNDS_ENABLED */

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

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

/*
** minimum sizes of the stack and heap allocated
*/
#define STACK_SIZE 6K
#define HEAP_SIZE 6K
#define STACKHEAP_SIZE 12K

/*
** 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(crtsfpc532)
#      else
#      define CRT RT_OBJ_NAME(crtsfp532)
#      endif
#    else
#      if defined(__cplusplus)
#      define CRT RT_OBJ_NAME(crtspc532)
#      else
#      define CRT RT_OBJ_NAME(crtsp532)
#      endif
#    endif
#  else
#    if USE_FILEIO
#      if defined(__cplusplus)
#      define CRT RT_OBJ_NAME(crtsfc532)
#      else
#      define CRT RT_OBJ_NAME(crtsf532)
#      endif
#    else
#      if defined(__cplusplus)
#      define CRT RT_OBJ_NAME(crtsc532)
#      else
#      define CRT RT_OBJ_NAME(crts532)
#      endif
#    endif
#  endif
#endif

/*
** define linked objects list
*/
$OBJECTS = 
   CRT,                       /* C startup object                 */
   $COMMAND_LINE_OBJECTS ,    /* defined by linker */
#if defined(USE_PROFILER0)    /* Profiling initialization funcs.  */
   RT_OBJ_NAME(prfflg0_532),
#elif defined(USE_PROFILER1)
   RT_OBJ_NAME(prfflg1_532),
#elif defined(USE_PROFILER2)
   RT_OBJ_NAME(prfflg2_532),
#endif
   __initsbsz532.doj,         /* meminit support                  */
#if defined(USER_CPLBTAB)
   USER_CPLBTAB ,             /* custom cplb configuration        */
#else
   cplbtab531.doj,            /* default cplb configuration       */
#endif
   RT_OBJ_NAME(crtn532)       /* CRT end object                   */
   ;

/*
** define linked library list
*/
$LIBRARIES = 
   RT_LIB_NAME(small532),     /* Supervisor mode support routines */
#if defined(_DINKUM_IO)
   RT_LIB_NAME(c532),         /* ANSI C (and IO) run-time library */
   RT_LIB_NAME(io532),        /* Fast IO and host IO support      */
#else
   RT_LIB_NAME(io532),        /* Fast IO and host IO support      */
   RT_LIB_NAME(c532),         /* ANSI C (and IO) run-time library */
#endif
#if defined(USE_FILEIO) || defined(USE_PROFGUIDE)
   RT_LIB_NAME(rt_fileio532), /* Run-time Support with File IO    */
#else
   RT_LIB_NAME(rt532),        /* Run-time Support without File IO */
#endif
   RT_LIB_NAME(event532),     /* Interrupt handler support        */
   RT_LIB_NAME_EH(cpp532),    /* ANSI C++ run-time library        */
   RT_LIB_NAME_EH(cpprt532),  /* C++ run-time support library     */
   RT_LIB_NAME(x532),         /* C++ exception handling support   */
#if defined(IEEEFP)
   RT_LIB_NAME(sftflt532),    /* IEEE floating-point emulation    */
#endif
   RT_LIB_NAME(f64ieee532),   /* 64-bit floating-point support    */
   RT_LIB_NAME(dsp532),       /* DSP run-time library             */
#if !defined(IEEEFP)
   RT_LIB_NAME(sftflt532),    /* IEEE floating-point emulation    */
#endif
   RT_LIB_NAME(etsi532),      /* ETSI run-time support library    */
   RT_LIB_NAME(ssl532),       /* system services library          */
   RT_LIB_NAME(drv532),       /* device drivers                   */
   RT_LIB_NAME(profile532)    /* Profile support routines         */
   ;

/*
** 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)
** 0xFFC00000 - 0xFFDFFFFF  System MMR registers (2MB)
** 0xFFB01000 - 0xFFBFFFFF  Reserved
** 0xFFB00000 - 0xFFB00FFF  Scratch SRAM (4K)
** 0xFFA14000 - 0xFFAFFFFF  Reserved
** 0xFFA10000 - 0xFFA13FFF  Code SRAM / cache (16K)
** 0xFFA0C000 - 0xFFA0FFFF  Reserved
** 0xFFA08000 - 0xFFA0BFFF  Code SRAM (16k)
** 0xFFA00000 - 0xFFA07FFF  Code ROM (32k)
** 0xFF808000 - 0xFF9FFFFF  Reserved
** 0xFF804000 - 0xFF807FFF  Data Bank A SRAM / cache (16K)
** 0xEF000000 - 0xFF7FFFFF  Reserved
** 0x20400000 - 0xEEFFFFFF  Reserved
** 0x20300000 - 0x203FFFFF  ASYNC MEMORY BANK 3 (1MB)
** 0x20200000 - 0x202FFFFF  ASYNC MEMORY BANK 2 (1MB)
** 0x20100000 - 0x201FFFFF  ASYNC MEMORY BANK 1 (1MB)
** 0x20000000 - 0x200FFFFF  ASYNC MEMORY BANK 0 (1MB)
** 0x00000000 - 0x07FFFFFF  SDRAM MEMORY (16MB - 128MB)
**
*/
MEMORY
{
   MEM_SYS_MMRS        { START(0xFFC00000) END(0xFFDFFFFF) TYPE(RAM) WIDTH(8) }
   MEM_L1_SCRATCH      { START(0xFFB00000) END(0xFFB00FFF) TYPE(RAM) WIDTH(8) }
   MEM_L1_CODE_CACHE   { START(0xFFA10000) END(0xFFA13FFF) TYPE(RAM) WIDTH(8) }
   MEM_L1_CODE         { START(0xFFA08000) END(0xFFA0BFFF) TYPE(RAM) WIDTH(8) }
#if defined(IDDE_ARGS) && !defined(USE_SDRAM)
#define ARGV_START 0xFF804000
   MEM_ARGV            { START(0xFF804000) END(0xFF8040FF) TYPE(RAM) WIDTH(8) }
   MEM_L1_DATA_A       { START(0xFF804100) END(0xFF807FFF) TYPE(RAM) WIDTH(8) }
#else
   MEM_L1_DATA_A       { START(0xFF804000) END(0xFF807FFF) TYPE(RAM) WIDTH(8) }
#endif
   MEM_ASYNC3          { START(0x20300000) END(0x203FFFFF) TYPE(RAM) WIDTH(8) }
   MEM_ASYNC2          { START(0x20200000) END(0x202FFFFF) TYPE(RAM) WIDTH(8) }
   MEM_ASYNC1          { START(0x20100000) END(0x201FFFFF) TYPE(RAM) WIDTH(8) }
   MEM_ASYNC0          { START(0x20000000) END(0x200FFFFF) TYPE(RAM) WIDTH(8) }
   /* The ADSP-BF531 EBIU allows for 4 sub-banks to be accessed simultaneously
   ** The LDF partitions the available SDRAM into 4 8MB banks which makes
   ** the best use of the EBIU and minimizes memory access stall cycles.
   ** bank0-heap, bank1-data, bank2-data/bsz, bank3-program
   ** See Hardware Reference Manual, SDRAM controller section
   ** for further information.
   */
#if defined(IDDE_ARGS) && defined(USE_SDRAM)
#define ARGV_START 0x00000004
   MEM_ARGV            { START(0x00000004) END(0x00000103) TYPE(RAM) WIDTH(8) }
   MEM_SDRAM0_BANK0    { START(0x00000104) END(0x007FFFFF) TYPE(RAM) WIDTH(8) }
#else
   MEM_SDRAM0_BANK0    { START(0x00000004) END(0x007FFFFF) TYPE(RAM) WIDTH(8) }
#endif
   MEM_SDRAM0_BANK1    { START(0x00800000) END(0x00FFFFFF) TYPE(RAM) WIDTH(8) }
   MEM_SDRAM0_BANK2    { START(0x01000000) END(0x017FFFFF) TYPE(RAM) WIDTH(8) }
   MEM_SDRAM0_BANK3    { START(0x01800000) END(0x01FFFFFF) TYPE(RAM) WIDTH(8) }
} /* MEMORY */

PROCESSOR p0
{
  OUTPUT( $COMMAND_LINE_OUTPUT_FILE )

  /* Following address should match reset address */
  RESOLVE(start,0xFFA08000)

#if defined(IDDE_ARGS)
  RESOLVE(___argv_string, ARGV_START)
#endif

  KEEP(start,_main)

  SECTIONS
  {

#if defined(__WORKAROUND_AVOID_LDF_BLOCK_BOUNDARIES) /* { */
    /* Workaround for hardware errata 05-00-0189 -
    ** "Speculative (and fetches made at boundary of reserved memory
    ** space) for instruction or data fetches may cause false
    ** protection exceptions".
    **
    ** Done by avoiding use of 76 bytes from at the end of blocks
    ** that are adjacent to reserved memory. Workaround is enabled
    ** for appropriate silicon revisions (-si-revision switch).
    */
    RESERVE(___wab0=0xFFB00FFF - 75,___l0=76) /* scratchpad */
#  if !INSTR_CACHE
    RESERVE(___wab1=0xFFA13FFF - 75,___l1=76) /* l1 instr sram/cache */
#  endif
    RESERVE(___wab2=0xFFA0BFFF - 75,___l2=76) /* l1 instr sram */
#  if !DATAA_CACHE
    RESERVE(___wab3=0xFF807FFF - 75,___l3=76) /* data A sram/cache */
#  endif
    RESERVE(___wab7=0x203FFFFF - 75,___l7=76) /* async bank 3 */
#  if defined(USE_CACHE) || defined(USE_SDRAM)
    RESERVE(___wab9=0x01FFFFFF - 75,___l9=76)  /* sdram */
#  endif
#endif /*} __WORKAROUND_AVOID_LDF_BLOCK_BOUNDARIES */

/*
** Include avoidance of boot-loader used bytes. The workaround for errata
** 05-00-0189 may have achieved this already.
*/
#if !defined(__WORKAROUND_AVOID_LDF_BLOCK_BOUNDARIES)
#  if ((defined(__SILICON_REVISION__) && \
       (__SILICON_REVISION__ == 0xffff || __SILICON_REVISION__ == 0x2)) || \
     !defined(__SILICON_REVISION__))
      /* 0xFF807FDF-0xFF807FFF used by boot-loader for 0.2 silicon. */
     RESERVE(___bldr2=0xFF807FDF,___bldr2l=33)

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
精品福利一二区| 国产精品久久夜| 欧美一区二区在线不卡| 久久天天做天天爱综合色| 亚洲精品免费在线观看| 精品一区二区免费在线观看| 91麻豆国产在线观看| 精品久久国产老人久久综合| 亚洲欧美在线观看| 国产九色精品成人porny| 欧美日韩黄色一区二区| 亚洲人妖av一区二区| 国产一区二区精品久久91| 欧美日韩视频不卡| 中文字幕综合网| 国产福利一区在线| 日韩欧美高清在线| 五月婷婷久久丁香| 色综合视频一区二区三区高清| 久久免费视频色| 欧美96一区二区免费视频| 欧美日韩一级片网站| 亚洲情趣在线观看| 91在线观看污| 中文字幕日本不卡| 成人av影视在线观看| 国产欧美一区视频| 东方aⅴ免费观看久久av| 久久免费午夜影院| 国产成人免费视频网站| 久久久www成人免费无遮挡大片| 蜜臀精品久久久久久蜜臀| 欧美日韩夫妻久久| 日韩一区欧美二区| 91精品一区二区三区久久久久久| 一级日本不卡的影视| 一本一道波多野结衣一区二区| 亚洲色欲色欲www在线观看| eeuss鲁片一区二区三区| 国产精品嫩草99a| 高清不卡一区二区在线| 国产精品色眯眯| 91麻豆免费看| 亚洲午夜久久久久久久久久久| 欧美午夜电影一区| 石原莉奈在线亚洲二区| 欧美成人三级电影在线| 国产在线一区观看| 中文字幕高清一区| 91日韩在线专区| 亚洲成a天堂v人片| 欧美成人vps| 高清av一区二区| 亚洲精品欧美综合四区| 欧美麻豆精品久久久久久| 免费在线观看成人| 国产女主播一区| 色婷婷国产精品久久包臀| 免费av网站大全久久| 久久久精品免费免费| 色综合天天视频在线观看| 午夜伦欧美伦电影理论片| 久久久久久免费网| 欧美性猛交xxxxxxxx| 久久精品国产色蜜蜜麻豆| 国产精品欧美一区二区三区| 欧美无砖砖区免费| 国产一区二区在线观看免费| 依依成人综合视频| 日韩亚洲欧美在线观看| 北条麻妃国产九九精品视频| 亚洲国产成人va在线观看天堂| 2021中文字幕一区亚洲| 在线观看免费视频综合| 久久精品二区亚洲w码| 亚洲欧美乱综合| 精品噜噜噜噜久久久久久久久试看 | 久久久久久久免费视频了| caoporn国产一区二区| 免费成人在线视频观看| 亚洲色图另类专区| 26uuu久久综合| 欧美视频自拍偷拍| 成人免费av网站| 免费观看在线综合| 亚洲福利一区二区| 国产精品久久久爽爽爽麻豆色哟哟| 91.com视频| 在线日韩av片| av毛片久久久久**hd| 久久99久久精品| 手机精品视频在线观看| 最新国产精品久久精品| 337p粉嫩大胆噜噜噜噜噜91av | 懂色av一区二区三区免费观看| 日韩影视精彩在线| 亚洲一区二区三区美女| 国产精品久久久久久久蜜臀| 精品国产乱码久久久久久图片 | 91蝌蚪国产九色| 国产精品一色哟哟哟| 免费高清在线视频一区·| 午夜精品福利一区二区三区蜜桃| 亚洲日本va在线观看| 国产精品美女久久久久久久久久久| 精品欧美乱码久久久久久1区2区| 欧美撒尿777hd撒尿| 91久久人澡人人添人人爽欧美| gogogo免费视频观看亚洲一| 成人爱爱电影网址| 成人精品视频一区| bt欧美亚洲午夜电影天堂| 国产成人精品综合在线观看| 国产酒店精品激情| 国产不卡一区视频| 国产成人高清视频| 不卡免费追剧大全电视剧网站| 午夜影院久久久| 国产三级欧美三级日产三级99| 不卡欧美aaaaa| 国产一区二区三区四区五区美女 | 丁香亚洲综合激情啪啪综合| 亚洲成人在线网站| 国产精品入口麻豆原神| 欧美电影免费提供在线观看| 欧美日韩精品一区二区在线播放| 久久99精品国产.久久久久久| 欧美日韩黄色一区二区| 欧美午夜不卡在线观看免费| 欧美人动与zoxxxx乱| 91久久精品网| 欧美一区二区三区思思人| 欧美大片一区二区| 欧美韩国日本一区| 一区二区三区免费看视频| 亚洲成人www| 轻轻草成人在线| 国产精品亚洲综合一区在线观看| 懂色中文一区二区在线播放| 91国模大尺度私拍在线视频| 欧美日本乱大交xxxxx| 欧美一区二区三区视频在线观看| 国产午夜亚洲精品理论片色戒 | 开心九九激情九九欧美日韩精美视频电影 | 美腿丝袜一区二区三区| 国产真实乱偷精品视频免| 99久久99久久精品免费看蜜桃| 欧美日韩免费观看一区三区| 2019国产精品| 一区二区三区欧美日韩| 美国一区二区三区在线播放| 成人黄色一级视频| 欧美日韩大陆在线| 国产女人aaa级久久久级 | 免费高清在线视频一区·| 成人亚洲精品久久久久软件| 欧美色手机在线观看| 久久免费美女视频| 亚洲国产综合色| 成人免费观看av| 91精品久久久久久久久99蜜臂| 国产精品人成在线观看免费| 日韩高清不卡在线| 一本色道久久综合亚洲aⅴ蜜桃 | 欧美亚洲国产一卡| 国产午夜精品一区二区三区嫩草| 一区二区三区中文字幕电影| 国产综合成人久久大片91| 欧洲亚洲精品在线| 国产日韩成人精品| 天天综合日日夜夜精品| 99久久99久久精品国产片果冻| 日韩欧美国产一二三区| 一区二区三区加勒比av| 丁香天五香天堂综合| 日韩美女视频在线| 亚洲福利国产精品| 99精品偷自拍| 久久夜色精品国产欧美乱极品| 日韩电影免费一区| 欧美婷婷六月丁香综合色| 中文在线资源观看网站视频免费不卡 | 国产一区二三区好的| 91精品国产91久久综合桃花| 亚洲精品免费一二三区| 国产不卡一区视频| 国产色一区二区| 韩国女主播一区二区三区| 日韩午夜中文字幕| 丝袜诱惑制服诱惑色一区在线观看 | 日韩欧美国产综合| 日本中文字幕一区二区视频| 欧美视频一区二区三区在线观看| 一区在线中文字幕| 国产成人精品影院| 国产精品天干天干在线综合| 国产在线精品不卡| 国产午夜精品一区二区三区嫩草| 国产一区二区三区香蕉| 国产亚洲欧洲一区高清在线观看|