1#---------------------------------------------------------------------------- 2# Project: NitroSDK - MB - demos - multiboot-PowerSave 3# File: main.lsf 4# 5# Copyright 2005-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: main.lsf,v $ 14# Revision 1.1 2005/04/28 07:15:06 yosizaki 15# initial upload. 16# 17# $NoKeywords: $ 18#---------------------------------------------------------------------------- 19# 20# Nitro LCF SPEC FILE 21# 22 23Static $(TARGET_NAME) 24{ 25 Address $(ADDRESS_STATIC) 26 Object $(OBJS_STATIC) 27 Library $(LLIBS) $(GLIBS) $(CW_LIBS) 28 29# increase capacity of IRQ stack. 30 StackSize 0 0x800 31} 32 33Autoload ITCM 34{ 35 Address $(ADDRESS_ITCM) 36 Object * (.itcm) 37 Object $(OBJS_AUTOLOAD) (.text) 38} 39 40Autoload DTCM 41{ 42 Address $(ADDRESS_DTCM) 43 Object * (.dtcm) 44 Object $(OBJS_AUTOLOAD) (.data) 45 Object $(OBJS_AUTOLOAD) (.bss) 46} 47 48