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

📄 lk.dr

📁 基于NEC单片的机的程序源码,关于PWM输出的程序.
💻 DR
字号:
; [Sample of Link Directive File]
; *****************************************************************************
; Link Directive File is created by users when memory or segment location needs
; to be changed from the default as the following cases, for instance:
;    1. In case the stack area should be in fixed area
;    2. In case the external memory should be used
;
; Please change the start address, the size of memory, and the name of memory
; or segment according to your system, and link this file with -D linker option
; if necessary.
;
;   MEMORY directive : Declares an address in installed memory.
;                      Devides memory into two or more areas and specifies 
;                      a memory area
;   MERGE directive  : Specifies location of a segment
; *****************************************************************************

; <Example on how to specify the stack area>
;  Please specify the linker option -SSTK.
;  The stack area should be in the internal high-speed RAM area 
;  in case of 78K/0 or 78K/0S series.
;
;      START ADDRESS, STACK SIZE
;memory STK : (0FE00H, 20H)

; <Example of locating data in external memory>
; The section name output by C compiler can be changed with
; #pragma section function.
;
; If the name of ROMization-related section which has global
; variables with initial values is changed, the modification of
; C start-up routine will be required. 
; Please refer the CC78K0 C Compiler Language User's Manual 
; Language Chap.11 in detail.
;
; ex. This is the example of renaming the @@DATA segment.
;   #pragma section @@DATA DAT1
;
;   By the following directives, "DAT1" segment is located in EXMEM area.
;
;        START ADDRESS, MEMORY SIZE
;memory EXMEM : (0F000H, 1000H)
;merge  DAT1 := EXMEM

⌨️ 快捷键说明

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