mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-04-03 17:17:10 +02:00
kernel: detect circuit10's emulator so it stays as CG50
Otherwise gint assumes Math+ by default.
This commit is contained in:
parent
294d6afc8c
commit
cf020c4bee
1 changed files with 3 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue