mirror of
https://github.com/rvtr/TwlIPL.git
synced 2025-10-31 06:01:12 -04:00
git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlIPL/trunk@3 b08762b0-b915-fc4b-9d8c-17b2551a87ff
52 lines
1.7 KiB
C
52 lines
1.7 KiB
C
/*---------------------------------------------------------------------------*
|
|
Project: TwlFirm - tools - makenorfirm
|
|
File: format_rom.h
|
|
|
|
Copyright 2007 Nintendo. All rights reserved.
|
|
|
|
These coded instructions, statements, and computer programs contain
|
|
proprietary information of Nintendo of America Inc. and/or Nintendo
|
|
Company Ltd., and are protected by Federal copyright law. They may
|
|
not be disclosed to third parties or copied or duplicated in any form,
|
|
in whole or in part, without the prior written consent of Nintendo.
|
|
|
|
$Date:: 2007-09-06$
|
|
$Rev$
|
|
$Author$
|
|
*---------------------------------------------------------------------------*/
|
|
#ifndef FORMAT_ROM_H_
|
|
#define FORMAT_ROM_H_
|
|
|
|
#include "misc.h"
|
|
#include <firm/format/norfirm.h>
|
|
|
|
|
|
#define DEFAULT_ALIGN 16
|
|
#define FIRM_ALIGN DEFAULT_ALIGN
|
|
#define FIRM_ALIGN_MASK (FIRM_ALIGN - 1)
|
|
|
|
#define DEFAULT_HOSTROOT "."
|
|
#define DEFAULT_ROOT "/"
|
|
|
|
#define DEFAULT_REJECT_1 "CVS"
|
|
#define DEFAULT_REJECT_2 "vssver.scc"
|
|
|
|
#define FORMAT_VERSION "1.0"
|
|
|
|
#define ENTRYNAME_MAX 127
|
|
|
|
#define DEFAULT_LISTFILE "default.nlf"
|
|
|
|
#define DEFAULT_NORFIRM_SUFFIX ".nor"
|
|
#define DEFAULT_SPECFILE_SUFFIX ".norsf"
|
|
|
|
/*===========================================================================*
|
|
* ROM FORMAT
|
|
*===========================================================================*/
|
|
|
|
//---------------------------------------------------------------------------
|
|
// ROM HEADER
|
|
//---------------------------------------------------------------------------
|
|
|
|
#endif //FORMAT_ROM_H_
|