1#----------------------------------------------------------------------------
2# Project:  TwlSDK - demos - MB - multiboot
3# File:     main.rsf
4#
5# Copyright 2005-2008 Nintendo.  All rights reserved.
6#
7# These coded instructions, 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# $Date:: 2008-09-18#$
14# $Rev: 8573 $
15# $Author: okubata_ryoma $
16#----------------------------------------------------------------------------
17#
18#  ROM SPEC FILE
19#
20
21Arm9
22{
23	Static		"$(MAKEROM_ARM9:r).sbin$(COMPSUFFIX9)"
24	OverlayDefs	"$(MAKEROM_ARM9:r)_defs.sbin$(COMPSUFFIX9)"
25	OverlayTable	"$(MAKEROM_ARM9:r)_table.sbin$(COMPSUFFIX9)"
26	Elf		"$(MAKEROM_ARM9:r).nef"
27}
28
29Arm7
30{
31	Static		"$(MAKEROM_ARM7:r).sbin$(COMPSUFFIX7)"
32	OverlayDefs	"$(MAKEROM_ARM7:r)_defs.sbin$(COMPSUFFIX7)"
33	OverlayTable	"$(MAKEROM_ARM7:r)_table.sbin$(COMPSUFFIX7)"
34	Elf		"$(MAKEROM_ARM7:r).nef"
35}
36
37
38Property
39{
40  RomSpeedType  $(MAKEROM_ROMSPEED)
41}
42
43RomSpec
44{
45	Offset		0x00000000
46	Segment		ALL
47
48	Align		512
49	Padding		0xFF
50
51	HostRoot	$(MAKEROM_ROMROOT)
52	Root		/
53	File		$(MAKEROM_ROMFILES)
54
55	HostRoot	data
56	Root		/data
57	File		icon.char
58
59	HostRoot	data
60	Root		/data
61	File		icon.plt
62}
63
64