1#---------------------------------------------------------------------------- 2# Project: NitroSDK - include 3# File: ARM9-TS.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-TS.lsf,v $ 14# Revision 1.12 2005/04/14 00:04:16 terui 15# Update copyright. 16# 17# Revision 1.11 2005/04/13 12:49:59 terui 18# Change Autoload DTCM Address 0x027c0000 -> 0x027e0000 19# 20# Revision 1.10 2004/08/18 01:50:09 yasu 21# DTCM moves to 0x027c0000 22# 23# Revision 1.9 2004/07/26 02:22:32 yasu 24# Change DTCM address to 0x023c0000 25# 26# Revision 1.8 2004/07/10 12:17:51 yasu 27# delete GROUP(ROOT) 28# 29# Revision 1.7 2004/07/10 04:11:17 yasu 30# Add GROUP(xxx) as object group 31# 32# Revision 1.6 2004/07/01 12:54:38 yasu 33# support ITCM/DTCM/WRAM autoload 34# 35# Revision 1.5 2004/07/01 10:41:46 yasu 36# support autoload 37# 38# Revision 1.4 2004/06/28 10:46:45 yasu 39# avoid to use '*' as wildcard 40# 41# Revision 1.3 2004/06/08 07:46:40 yasu 42# move start address 0x02004000 -> 0x02000000 43# 44# Revision 1.2 2004/04/14 10:25:09 yasu 45# delete LIBRARIES group 46# 47# Revision 1.1 2004/04/06 01:59:54 yasu 48# newly added 49# 50# $NoKeywords: $ 51#---------------------------------------------------------------------------- 52# 53# Nitro LCF SPEC FILE 54# 55 56Static $(TARGET_NAME) 57{ 58 Address $(ADDRESS_STATIC) 59 Object $(OBJS_STATIC) 60 Library $(LLIBS) $(GLIBS) $(CW_LIBS) 61} 62 63Autoload ITCM 64{ 65 Address $(ADDRESS_ITCM) 66 Object * (.itcm) 67 Object $(OBJS_AUTOLOAD) (.text) 68} 69 70Autoload DTCM 71{ 72 Address $(ADDRESS_DTCM) 73 Object * (.dtcm) 74 Object $(OBJS_AUTOLOAD) (.data) 75 Object $(OBJS_AUTOLOAD) (.bss) 76} 77 78