mirror of
https://github.com/wiiu-env/MemoryMappingModule.git
synced 2024-11-22 09:49:20 +01:00
Improve logging
This commit is contained in:
parent
dec7e11dfd
commit
360a87977a
@ -26,7 +26,7 @@ void runOnAllCores(CThread::Callback callback, void *callbackArg, int32_t iAttr
|
|||||||
|
|
||||||
void writeKernelNOPs(CThread *thread, void *arg) {
|
void writeKernelNOPs(CThread *thread, void *arg) {
|
||||||
uint16_t core = OSGetThreadAffinity(OSGetCurrentThread());
|
uint16_t core = OSGetThreadAffinity(OSGetCurrentThread());
|
||||||
DEBUG_FUNCTION_LINE("Writing kernel NOPs on core %d\n", core/2);
|
DEBUG_FUNCTION_LINE("Writing kernel NOPs on core %d", core/2);
|
||||||
|
|
||||||
KernelNOPAtPhysicalAddress(0xFFF1D754);
|
KernelNOPAtPhysicalAddress(0xFFF1D754);
|
||||||
KernelNOPAtPhysicalAddress(0xFFF1D64C);
|
KernelNOPAtPhysicalAddress(0xFFF1D64C);
|
||||||
@ -50,7 +50,7 @@ void writeKernelNOPs(CThread *thread, void *arg) {
|
|||||||
void writeSegmentRegister(CThread *thread, void *arg) {
|
void writeSegmentRegister(CThread *thread, void *arg) {
|
||||||
sr_table_t *table = (sr_table_t *) arg;
|
sr_table_t *table = (sr_table_t *) arg;
|
||||||
uint16_t core = OSGetThreadAffinity(OSGetCurrentThread());
|
uint16_t core = OSGetThreadAffinity(OSGetCurrentThread());
|
||||||
DEBUG_FUNCTION_LINE("Writing segment register to core %d\n", core);
|
DEBUG_FUNCTION_LINE("Writing segment register to core %d", core/2);
|
||||||
|
|
||||||
DCFlushRange(table, sizeof(sr_table_t));
|
DCFlushRange(table, sizeof(sr_table_t));
|
||||||
KernelWriteSRs(table);
|
KernelWriteSRs(table);
|
||||||
@ -58,7 +58,7 @@ void writeSegmentRegister(CThread *thread, void *arg) {
|
|||||||
|
|
||||||
void readAndPrintSegmentRegister(CThread *thread, void *arg) {
|
void readAndPrintSegmentRegister(CThread *thread, void *arg) {
|
||||||
uint16_t core = OSGetThreadAffinity(OSGetCurrentThread());
|
uint16_t core = OSGetThreadAffinity(OSGetCurrentThread());
|
||||||
DEBUG_FUNCTION_LINE("Reading segment register and page table from core %d", core);
|
DEBUG_FUNCTION_LINE("Reading segment register and page table from core %d", core/2);
|
||||||
sr_table_t srTable;
|
sr_table_t srTable;
|
||||||
memset(&srTable, 0, sizeof(srTable));
|
memset(&srTable, 0, sizeof(srTable));
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user