From 0fa36aa7dde14ffe10608504b40b807b736f6877 Mon Sep 17 00:00:00 2001 From: jakcron Date: Tue, 29 Sep 2015 00:08:46 +0800 Subject: [PATCH] ctrtool: n3ds core 2 access flag detection. --- ctrtool/exheader.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ctrtool/exheader.c b/ctrtool/exheader.c index e7fee98..7312f03 100644 --- a/ctrtool/exheader.c +++ b/ctrtool/exheader.c @@ -278,6 +278,7 @@ void exheader_print_arm11kernelcapabilities(exheader_context* ctx) fprintf(stdout, " > Shared device mem: %s\n", (descriptor&(1<<6))?"YES":"NO"); fprintf(stdout, " > Runnable on sleep: %s\n", (descriptor&(1<<7))?"YES":"NO"); fprintf(stdout, " > Special memory: %s\n", (descriptor&(1<<12))?"YES":"NO"); + fprintf(stdout, " > Access Core 2: %s\n", (descriptor&(1<<13))?"YES":"NO"); switch(memorytype)