Avoid compiler optimizations for kernel code

This commit is contained in:
Maschell 2022-05-13 01:23:42 +02:00
parent 4da17c9e37
commit fd647fc2e8

View File

@ -1,5 +1,8 @@
#include <cstdint>
#pragma GCC push_options
#pragma GCC optimize("O0")
#define k_memset ((void (*)(uint32_t, uint32_t, uint32_t)) 0xfff09d60)
#define KiReport ((void (*)(const char *, ...)) 0xfff0ad0c)
#define IopShell_AsyncCallback (0xfff1b7d8)
@ -89,4 +92,5 @@ void IopShellInitInternal() {
return;
}
KiReport("IopShellInit was successful\n");
}
}
#pragma GCC pop_options