1 /*---------------------------------------------------------------------------* 2 Project: Horizon 3 File: ARM_reg.h 4 5 Copyright (C)2009 Nintendo Co., Ltd. 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 $Rev: 12449 $ 14 *---------------------------------------------------------------------------*/ 15 16 #ifndef NN_HW_ARM_ARM_REG_H_ 17 #define NN_HW_ARM_ARM_REG_H_ 18 19 20 #if defined(NN_PROCESSOR_ARM_V7) 21 #include <nn/hw/ARM/ARMv7_reg.h> 22 #elif defined(NN_PROCESSOR_ARM_V6) 23 #include <nn/hw/ARM/ARMv6_reg.h> 24 #elif defined(NN_PROCESSOR_ARM_V5) 25 #include <nn/hw/ARM/ARMv5_reg.h> 26 #elif defined(NN_PROCESSOR_ARM_V4) 27 #include <nn/hw/ARM/ARMv4_reg.h> 28 #else 29 #error processor not selected 30 #endif 31 32 #if defined(NN_PROCESSOR_ARM_VFP_V3) 33 #include <nn/hw/ARM/VFPv3_reg.h> 34 #elif defined(NN_PROCESSOR_ARM_VFP_V2) 35 #include <nn/hw/ARM/VFPv2_reg.h> 36 #endif 37 38 #include <nn/hw/ARM/reg_common.h> 39 40 #endif // ifndef NN_HW_ARM_ARM_REG_H_ 41