NE1EMUのキャッシュサイズ修正。

git-svn-id: file:///Volumes/Transfer/gigaleak_20231201/2020-09-30%20-%20paladin.7z/paladin/ctr_firmware@174 b871894f-2f95-9b40-918c-086798483c85
This commit is contained in:
nakasima 2009-01-15 02:52:51 +00:00
parent 63c9a50447
commit dcde0e5dbf

View File

@ -33,13 +33,13 @@ extern "C" {
#endif // SDK_MG20EMU
#define HW_CPU_CLOCK HW_CPU_CLOCK_ARM11
#ifndef SDK_MG20EMU
#if !defined(SDK_MG20EMU) && !defined(SDK_NE1EMU)
#define HW_ARM11_IC_SIZE 0x4000 // Inst Cache
#define HW_ARM11_DC_SIZE 0x4000 // Data Cache
#else // SDK_MG20EMU
#else // SDK_MG20EMU || SDK_NE1EMU
#define HW_ARM11_IC_SIZE 0x8000 // Inst Cache
#define HW_ARM11_DC_SIZE 0x8000 // Data Cache
#endif // SDK_MG20EMU
#endif // SDK_MG20EMU || SDK_NE1EMU
#define HW_ARM11_CACHE_LINE_SIZE 32
#define HW_IC_SIZE HW_ARM11_IC_SIZE