tmonitor.lnk

来自「T-kernel T-monitor Sample」· LNK 代码 · 共 52 行

LNK
52
字号
/******************************************************************************
*       System Name : RENESAS T-Engine/micro T-Engine series
*       File Name   : tmonitor.lnk
*       Version     : 1.00.00
*       Contents    : Linker script file fot SH7727 T-Monitor
*       Model       : SH7727 T-Engine
*       CPU         : SH7727
*       Compiler    : GNU
*       OS          : T-Kernel/T-Kernel Standard Extention
*       note        : The Software is being delivered to you "AS IS" 
*                   : and Renesas,whether explicitly or implicitly makes  
*                   : no warranty as to its Use or performance. 
*                   : RENESAS AND ITS SUPPLIER DO NOT AND CANNOT WARRANT 
*                   : THE PERFORMANCE OR RESULTS YOU MAY OBTAIN  BY USING 
*                   : THE SOFTWARE. AS TO ANY MATTER INCLUDING WITHOUT 
*                   : LIMITATION NONINFRINGEMENT OF THIRD PARTY RIGHTS,
*                   : MERCHANTABILITY, INTEGRATION, SATISFACTORY QUALITY, 
*                   : OR FITNESS FOR ANY PARTICULAR PURPOSE.
*
*       Copyright (c) 2005 RENESAS TECHNOLOGY CORP. All Rights Reserved.
*       AND RENESAS SOLUTIONS CORP. All Rights Reserved.
*       history   : 2006.02.03 ver1.00.00
******************************************************************************/

OUTPUT_FORMAT("elf32-shl", "elf32-sh", "elf32-shl")
OUTPUT_ARCH(sh)

SECTIONS {
	.VBRHDR 0x80000000 : {
		*(VBRHDR)
	}
	.text : {
		*(.text)
	}
	.data 0x8c000500 : {
		*(.data)
	}
	.bss : {
		*(.bss)
	}
	.rodata :
	{
		*(.rodata)
	}
	.RESET_HDR 0xA0000000 : {
		*(RESET_HDR)
	}
	.text : {
		*(.text)
	}
}

⌨️ 快捷键说明

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