From ff17b8c22c70d433f6839d53e6738009fed82eee Mon Sep 17 00:00:00 2001 From: Lephe Date: Tue, 28 Jan 2025 23:15:05 +0100 Subject: [PATCH] kernel: syscall support for Math+ OS v2.00 --- src/kernel/kernel.c | 2 ++ src/kernel/syscalls.S | 56 +++++++++++++++++++++---------------------- 2 files changed, 30 insertions(+), 28 deletions(-) diff --git a/src/kernel/kernel.c b/src/kernel/kernel.c index 0a08e71..7ef15eb 100644 --- a/src/kernel/kernel.c +++ b/src/kernel/kernel.c @@ -45,6 +45,8 @@ void kinit(void) char *version = (void *)0x80020020; if(!memcmp(version, "01.00", 5)) gint_set_CASIOWIN_API(1); + else if(gint[HWCALC] == HWCALC_FXCG100 && !memcmp(version, "02.00", 5)) + gint_set_CASIOWIN_API(2); else gint_set_CASIOWIN_API(0); #endif diff --git a/src/kernel/syscalls.S b/src/kernel/syscalls.S index 94bc19f..f9f0a06 100644 --- a/src/kernel/syscalls.S +++ b/src/kernel/syscalls.S @@ -144,7 +144,7 @@ syscall_table: #endif /* GINT_OS_FX */ #if GINT_OS_CG -#define CASIOWIN_API_VERSIONS 2 +#define CASIOWIN_API_VERSIONS 3 .global _gint_set_CASIOWIN_API .global _gint_get_CASIOWIN_API @@ -204,33 +204,33 @@ _gint_get_CASIOWIN_API: 3: .long .CASIOWIN_API .CASIOWIN_TABLE: - .long 0x1f44, 0x8025e0fc /* malloc */ - .long 0x1f42, 0x8025dec8 /* free */ - .long 0x1f46, 0x8025ec3c /* realloc */ - .long 0x1db4, 0x802404d2 /* BFile_Remove */ - .long 0x1db3, 0x80240482 /* BFile_Rename */ - .long 0x1dae, 0x802401b0 /* BFile_Create */ - .long 0x1da3, 0x8023fb90 /* BFile_Open */ - .long 0x1da4, 0x8023fd0e /* BFile_Close */ - .long 0x1da6, 0x8023fdc4 /* BFile_Size */ - .long 0x1da9, 0x8023ff2c /* BFile_Seek */ - .long 0x1dab, 0x8024003c /* BFile_GetPos */ - .long 0x1daf, 0x8024025e /* BFile_Write */ - .long 0x1dac, 0x80240082 /* BFile_Read */ - .long 0x1db6, 0x80240888 /* BFile_FindFirst */ - .long 0x1db8, 0x80240b06 /* BFile_FindNext */ - .long 0x1dba, 0x80240c10 /* BFile_FindClose */ - .long 0x08d9, 0x800b130c /* Timer_Install */ - .long 0x08db, 0x800b1456 /* Timer_Start */ - .long 0x08dc, 0x800b14b2 /* Timer_Stop */ - .long 0x08da, 0x800b13d4 /* Timer_Deinstall */ - .long 0x12c6, 0 /* PutKeyCode */ - .long 0x12bf, 0x8017be56 /* GetKeyWait */ - .long 0x12c7, 0 /* ClearKeyBuffer */ - .long 0x01e6, 0x8004579a /* GetVRAMAddress */ - .long 0x1e6e, 0 /* SetQuitHandler */ - .long 0x1839, 0 /* PowerOff */ - .long 0x1187, 0 /* Reset */ + .long 0x1f44, 0x8025e0fc, 0x80366708 /* malloc */ + .long 0x1f42, 0x8025dec8, 0x803664d4 /* free */ + .long 0x1f46, 0x8025ec3c, 0x803672c8 /* realloc */ + .long 0x1db4, 0x802404d2, 0x80334212 /* BFile_Remove */ + .long 0x1db3, 0x80240482, 0x803341c2 /* BFile_Rename */ + .long 0x1dae, 0x802401b0, 0x80333ef0 /* BFile_Create */ + .long 0x1da3, 0x8023fb90, 0x803338d0 /* BFile_Open */ + .long 0x1da4, 0x8023fd0e, 0x80333a4e /* BFile_Close */ + .long 0x1da6, 0x8023fdc4, 0x80333b04 /* BFile_Size */ + .long 0x1da9, 0x8023ff2c, 0x80333c6c /* BFile_Seek */ + .long 0x1dab, 0x8024003c, 0x80333d7c /* BFile_GetPos */ + .long 0x1daf, 0x8024025e, 0x80333f9e /* BFile_Write */ + .long 0x1dac, 0x80240082, 0x80333dc2 /* BFile_Read */ + .long 0x1db6, 0x80240888, 0x803345c8 /* BFile_FindFirst */ + .long 0x1db8, 0x80240b06, 0x80334846 /* BFile_FindNext */ + .long 0x1dba, 0x80240c10, 0x80334950 /* BFile_FindClose */ + .long 0x08d9, 0x800b130c, 0x8010de28 /* Timer_Install */ + .long 0x08db, 0x800b1456, 0x8010df72 /* Timer_Start */ + .long 0x08dc, 0x800b14b2, 0x8010dfce /* Timer_Stop */ + .long 0x08da, 0x800b13d4, 0x8010def0 /* Timer_Deinstall */ + .long 0x12c6, 0, 0 /* PutKeyCode */ + .long 0x12bf, 0x8017be56, 0x802382fe /* GetKeyWait */ + .long 0x12c7, 0, 0 /* ClearKeyBuffer */ + .long 0x01e6, 0x8004579a, 0x8007569e /* GetVRAMAddress */ + .long 0x1e6e, 0, 0 /* SetQuitHandler */ + .long 0x1839, 0, 0 /* PowerOff */ + .long 0x1187, 0, 0 /* Reset */ #define casiowin_call(id) bra _CASIOWIN_call; mov id, r0