mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-01-04 07:53:34 +01:00
f33cb3cf80
* Now uses topti instead of fxlib for text (including MMU failure) * Fit .pretext into 4k for everything before MMU succeeds * A short version of sprintf() for dynamic messages * Support a driver function, status(), to allow early driver debug * Expose more useful platform information in <gint/mpu.h> * Expose the first of a few CASIOWIN syscalls
11 lines
248 B
C
11 lines
248 B
C
//---
|
|
// gint:core:syscalls - calls to CASIOWIN
|
|
//---
|
|
|
|
#ifndef GINT_CORE_SYSCALLS
|
|
#define GINT_CORE_SYSCALLS
|
|
|
|
/* __os_version(): Get OS version on the form MM.mm.iiii (10 bytes) */
|
|
void __os_version(char *version);
|
|
|
|
#endif /* GINT_CORE_SYSCALLS */
|