diff --git a/trunk/bootrom/build/libraries/init/ARM11/crt0.c b/trunk/bootrom/build/libraries/init/ARM11/crt0.c index f918bc9..e6ffaea 100644 --- a/trunk/bootrom/build/libraries/init/ARM11/crt0.c +++ b/trunk/bootrom/build/libraries/init/ARM11/crt0.c @@ -87,6 +87,16 @@ LSYM(1) beq BSYM(1) tst r2, #HW_C0_AP_CPU_ID_MASK beq core0_start +#ifdef SDK_NE1EMU + cmp r2, #1 + beq core1_start +LSYM(1) + wfi + nop + b BSYM(1) +#endif // SDK_NE1EMU + +core1_start //---- Wait for IPI #ifdef BROM_USE_MPCORE_EXTEND_OP cpsid i diff --git a/trunk/build/buildtools/commondefs b/trunk/build/buildtools/commondefs index 498ec97..812dae7 100644 --- a/trunk/build/buildtools/commondefs +++ b/trunk/build/buildtools/commondefs @@ -123,10 +123,12 @@ endif # one of [ARM/KMC] # -ifeq ($(CTR_PLATFORM),MG20EMU) -CTR_DEBUGGER ?= KMC -endif +ifneq ($(CTR_PLATFORM),MG20EMU) +ifneq ($(CTR_PLATFORM),NE1EMU) CTR_DEBUGGER ?= ARM +endif +endif +CTR_DEBUGGER ?= KMC diff --git a/trunk/tools/bootrom/ne1tb/teg_dev11.axf b/trunk/tools/bootrom/ne1tb/teg_dev11.axf index 2621e0f..172ff9d 100644 Binary files a/trunk/tools/bootrom/ne1tb/teg_dev11.axf and b/trunk/tools/bootrom/ne1tb/teg_dev11.axf differ diff --git a/trunk/tools/bootrom/ne1tb/thread11.axf b/trunk/tools/bootrom/ne1tb/thread11.axf index 0660507..807b55e 100644 Binary files a/trunk/tools/bootrom/ne1tb/thread11.axf and b/trunk/tools/bootrom/ne1tb/thread11.axf differ