kernel: detect circuit10's emulator so it stays as CG50

Otherwise gint assumes Math+ by default.
This commit is contained in:
Lephe 2025-03-24 10:28:34 +01:00
parent 294d6afc8c
commit cf020c4bee
No known key found for this signature in database
GPG key ID: 1BBA026E13FC0495

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);