Compare commits

...

3 commits

Author SHA1 Message Date
Lephe
48718bf9be
giteapc: also install CP target by default 2025-03-24 20:18:10 +01:00
Lephe
4a5c0bbfec
gint: fix poweroff crash due to misaligned syscall table 2025-03-24 10:57:22 +01:00
Lephe
cf020c4bee
kernel: detect circuit10's emulator so it stays as CG50
Otherwise gint assumes Math+ by default.
2025-03-24 10:28:43 +01:00
3 changed files with 12 additions and 4 deletions

View file

@ -6,16 +6,19 @@ configure:
@ fxsdk build-fx -c $(GINT_CMAKE_OPTIONS)
@ fxsdk build-cg -c $(GINT_CMAKE_OPTIONS)
@ fxsdk build-fxg3a -c $(GINT_CMAKE_OPTIONS)
@ fxsdk build-cp -c $(GINT_CMAKE_OPTIONS)
build:
@ fxsdk build-fx
@ fxsdk build-cg
@ fxsdk build-fxg3a
@ fxsdk build-cp
install:
@ fxsdk build-fx install
@ fxsdk build-cg install
@ fxsdk build-fxg3a install
@ fxsdk build-cp install
uninstall:
@ if [ -e build-fx/install_manifest.txt ]; then \
@ -27,5 +30,8 @@ uninstall:
@ if [ -e build-fxg3a/install_manifest.txt ]; then \
xargs rm -f < build-fxg3a/install_manifest.txt; \
fi
@ if [ -e build-cp/install_manifest.txt ]; then \
xargs rm -f < build-cp/install_manifest.txt; \
fi
.PHONY: configure build install uninstall

View file

@ -155,6 +155,9 @@ void hw_detect(void)
uint8_t *productID = (void *)0x8001ffd0;
if(!memcmp(productID, "\xff\xff\xff\xff\xff\xff\xff\xff", 8))
gint[HWCALC] = HWCALC_FXCG_MANAGER;
/* Tell circuit10's emulator apart using the lack of OS version */
if(!memcmp(version, "UUUUUUUUUU", 10))
gint[HWCALC] = HWCALC_FXCG50;
/* Basic memory information */
gint[HWRAM] = (gint[HWCALC] == HWCALC_PRIZM) ? (2 << 20) : (8 << 20);

View file

@ -258,10 +258,9 @@ ___PutKeyCode: casiowin_call(#20)
___GetKeyWait: casiowin_call(#21)
___ClearKeyBuffer: casiowin_call(#22)
___GetVRAMAddress: casiowin_call(#23)
___ConfigureStatusArea: casiowin_call(#24)
___SetQuitHandler: casiowin_call(#25)
___PowerOff: casiowin_call(#26)
___Reset: casiowin_call(#27)
___SetQuitHandler: casiowin_call(#24)
___PowerOff: casiowin_call(#25)
___Reset: casiowin_call(#26)
.data
.CASIOWIN_API: