forked from buglabs/bugswarm-renesas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
r_lk.dr
74 lines (72 loc) · 3.63 KB
/
r_lk.dr
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
;/**********************************************************************************************************************
;* DISCLAIMER
;* This software is supplied by Renesas Electronics Corporation and is only
;* intended for use with Renesas products. No other uses are authorized. This
;* software is owned by Renesas Electronics Corporation and is protected under
;* all applicable laws, including copyright laws.
;* THIS SOFTWARE IS PROVIDED "AS IS" AND RENESAS MAKES NO WARRANTIES REGARDING
;* THIS SOFTWARE, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING BUT NOT
;* LIMITED TO WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
;* AND NON-INFRINGEMENT. ALL SUCH WARRANTIES ARE EXPRESSLY DISCLAIMED.
;* TO THE MAXIMUM EXTENT PERMITTED NOT PROHIBITED BY LAW, NEITHER RENESAS
;* ELECTRONICS CORPORATION NOR ANY OF ITS AFFILIATED COMPANIES SHALL BE LIABLE
;* FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES FOR
;* ANY REASON RELATED TO THIS SOFTWARE, EVEN IF RENESAS OR ITS AFFILIATES HAVE
;* BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
;* Renesas reserves the right, without notice, to make changes to this software
;* and to discontinue the availability of this software. By using this software,
;* you agree to the additional terms and conditions found by accessing the
;* following link:
;* http://www.renesas.com/disclaimer
;*
;* Copyright (C) 2010, 2011 Renesas Electronics Corporation. All rights reserved.
;**********************************************************************************************************************/
;/*
;***********************************************************************************************************************
;* File Name : r_lk.dr
;* Version : CodeGenerator for RL78/G13 V1.03.01 [11 Oct 2011]
;* Device(s) : R5F100LE
;* Tool-Chain : CA78K0R
;* Description : This is the link file.
;* Creation Date: 4/16/2012
;***********************************************************************************************************************
;*/
; [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 RAM area.
;
; START ADDRESS, STACK SIZE
;memory STK : ( 0FB000H, 100H )
; <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 CC78K0R C Compiler Language User's Manual
; Language Chap.11 in detail.
;
; ex. This is the example of renaming the @@DATAL segment.
; #pragma section @@DATAL EXTDATA
;
; By the following directives, "EXTDATA" segment is located in EXMEM area.
;
; START ADDRESS, MEMORY SIZE