1#---------------------------------------------------------------------------- 2# Project: NitroSDK - include 3# File: ROM-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: ROM-TEG.rsf,v $ 14# Revision 1.7 2005/04/13 06:41:11 yosizaki 15# fix NITRO_ROMSPEED to MAKEROM_ROMSPEED. 16# 17# Revision 1.6 2005/04/05 23:52:58 yosizaki 18# fix copyright date. 19# 20# Revision 1.5 2005/04/05 12:16:10 yosizaki 21# support RomSpeedType parameter. 22# 23# Revision 1.4 2004/09/21 02:18:49 yasu 24# Add default banner 25# 26# Revision 1.3 2004/09/09 11:39:09 yasu 27# Unified ROM-TS and ROM-TS-C, also ROM-TEG and ROM-TEG-C 28# 29# Revision 1.2 2004/05/26 12:03:38 yasu 30# add :r option to get basename for supporting IDE with makerom 31# 32# Revision 1.1 2004/03/26 13:16:47 yasu 33# newly added 34# 35# $NoKeywords: $ 36#---------------------------------------------------------------------------- 37# 38# Nitro ROM SPEC FILE 39# 40 41Arm9 42{ 43 Static "$(MAKEROM_ARM9:r).sbin$(COMPSUFFIX9)" 44 OverlayDefs "$(MAKEROM_ARM9:r)_defs.sbin$(COMPSUFFIX9)" 45 OverlayTable "$(MAKEROM_ARM9:r)_table.sbin$(COMPSUFFIX9)" 46 Elf "$(MAKEROM_ARM9:r).nef" 47} 48 49Arm7 50{ 51 Static "$(MAKEROM_ARM7:r).sbin$(COMPSUFFIX7)" 52 OverlayDefs "$(MAKEROM_ARM7:r)_defs.sbin$(COMPSUFFIX7)" 53 OverlayTable "$(MAKEROM_ARM7:r)_table.sbin$(COMPSUFFIX7)" 54 Elf "$(MAKEROM_ARM7:r).nef" 55} 56 57Property 58{ 59 ### 60 ### Settings for FinalROM 61 ### 62 #### BEGIN 63 # 64 # TITLE NAME: Your product name within 12bytes 65 # 66 #TitleName "MY APP NAME" 67 68 # 69 # MAKER CODE: Your company ID# in 2 ascii words 70 # issued by NINTENDO 71 # 72 #MakerCode "00" 73 74 # 75 # REMASTER VERSION: Mastering version 76 # 77 #RomVersion 0 78 79 # 80 # ROM SPEED TYPE: [MROM/1TROM/UNDEFINED] 81 # 82 RomSpeedType $(MAKEROM_ROMSPEED) 83 84 # 85 # ROM SIZE: in bit [64M/128M/256M/512M/1G/2G] 86 # 87 #RomSize 128M 88 #RomSize 256M 89 90 # 91 # ROM PADDING: TRUE if finalrom 92 # 93 #RomFootPadding TRUE 94 95 # 96 # ROM HEADER TEMPLATE: Provided to every product by NINTENDO 97 # 98 #RomHeaderTemplate ./etc/rom_header.template.sbin 99 100 # 101 # BANNER FILE: generated from Banner Spec File 102 # 103 #BannerFile ./etc/myGameBanner.bnr 104 BannerFile $(NITROSDK_ROOT)/include/nitro/specfiles/default.bnr 105 106 # 107 # Permit LandingTmpJump: for TWL "ApplicationJump" function [TRUE/FALSE] 108 # 109 PermitLandingTmpJump TRUE 110 111 ### 112 ### 113 ### 114 #### END 115} 116 117RomSpec 118{ 119 Offset 0x00000000 120 Segment ALL 121 HostRoot $(MAKEROM_ROMROOT) 122 Root / 123 File $(MAKEROM_ROMFILES) 124} 125