diff options
Diffstat (limited to 'src/gos/raw32.c')
-rw-r--r-- | src/gos/raw32.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gos/raw32.c b/src/gos/raw32.c index c75342d4..22c753aa 100644 --- a/src/gos/raw32.c +++ b/src/gos/raw32.c @@ -24,6 +24,12 @@ static void _gosThreadsInit(void); void _gosInit(void) { + /* No initialization of the operating system itself is needed as there isn't one. + * On the other hand the C runtime should still already be initialized before + * getting here! + */ + #warning "GOS: Raw32 - Make sure you initialize your hardware and the C runtime before calling gfxInit() in your application!" + // Set up the heap allocator _gosHeapInit(); |