?? lk.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 : (0FB00H, 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 + -