1#---------------------------------------------------------------------------- 2# Project: NitroSDK - include 3# File: ARM9-TEG.lsf 4# 5# Copyright 2003-2008 Nintendo. All rights reserved. 6# 7# These coded insructions, statements, and computer programs contain 8# proprietary information of Nintendo of America Inc. and/or Nintendo 9# Company Ltd., and are protected by Federal copyright law. They may 10# not be disclosed to third parties or copied or duplicated in any form, 11# in whole or in part, without the prior written consent of Nintendo. 12# 13# $Log: ARM9-TEG.lsf,v $ 14# Revision 1.9 2004/07/10 12:17:51 yasu 15# delete GROUP(ROOT) 16# 17# Revision 1.8 2004/07/10 04:11:17 yasu 18# Add GROUP(xxx) as object group 19# 20# Revision 1.7 2004/07/08 04:04:59 yasu 21# fix small typo 22# 23# Revision 1.6 2004/07/01 12:54:38 yasu 24# support ITCM/DTCM/WRAM autoload 25# 26# Revision 1.5 2004/07/01 09:41:50 yasu 27# support autoload 28# 29# Revision 1.4 2004/06/28 10:53:23 yasu 30# Avoid to use '*' as wildcard 31# 32# Revision 1.3 2004/04/14 10:25:09 yasu 33# delete LIBRARIES group 34# 35# Revision 1.2 2004/03/26 13:16:17 yasu 36# use variables 37# 38# Revision 1.1 2004/03/26 06:04:32 yasu 39# move spec files 40# 41# Revision 1.1 2004/03/18 12:42:34 yasu 42# default.lsf -> default.ARM[9/7]-TEG.lsf 43# 44# Revision 1.2 2004/03/18 03:11:26 yasu 45# rename segment default -> main 46# 47# Revision 1.1 2004/03/18 02:51:51 yasu 48# default lcf spec file 49# 50# $NoKeywords: $ 51#---------------------------------------------------------------------------- 52# 53# Nitro LCF SPEC FILE 54# 55 56Static $(TARGET_NAME) 57{ 58 Address 0x02004000 59 Object $(OBJS_STATIC) 60 Library $(LLIBS) $(GLIBS) $(CW_LIBS) 61} 62 63Autoload ITCM 64{ 65 Address 0x01ff8000 66 Object * (.itcm) 67 Object $(OBJS_AUTOLOAD) (.text) 68} 69 70Autoload DTCM 71{ 72 Address 0x02380000 73 Object * (.dtcm) 74 Object $(OBJS_AUTOLOAD) (.data) 75 Object $(OBJS_AUTOLOAD) (.bss) 76} 77