📄 lk.dr
字号:
;/*
;******************************************************************************
;*
;* This device driver was created by Applilet2 for the Applilet2 for 78K0R/Kx3
;* 16-Bit Single-Chip Microcontrollers
;*
;* Copyright(C) NEC Electronics Corporation 2002 - 2008
;* All rights reserved by NEC Electronics Corporation.
;*
;* This program should be used on your own responsibility.
;* NEC Electronics Corporation assumes no responsibility for any losses
;* incurred by customers or third parties arising from the use of this file.
;*
;* Filename : lk.dr
;* Abstract : This is the link file.
;* APIlib : Applilet2 for 78K0R/Kx3 V2.10 [31 Jan. 2007]
;*
;* Device : uPD78F1166_A0
;*
;* Compiler : CC78K0R
;*
;* Creation date: 2008-7-16
;*
;******************************************************************************
;*/
;******************************************************************************
;<Directive>
; MEMORY directive: Declares an address in installed memory.
; 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/0r or 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 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 + -