/*---------------------------------------------------------------------------* 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 #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_