Also see customized MPU.
Slim and standard use different
keyboard matrixcode-mappings.
The fx-9750GII is a fx-9860GII without backlight
and with a smaller LCD (visible diagonal 70mm).
The
fx-7400GII is a fx-9860GII without backlight, without USB-port, with a
smaller LCD (visible diagonal 65mm) and a smaller flash-capacity (2MB).
To distinguish between slim and standard, use bit 3 of
port E.
#define PORT_E_DR 0xA4000128
char IsSlim(){return
!( *(char*)PORT_E_DR
& 0x08 );
To detect the emulator, use the calculators fingerprint
at 0x8000FFD0.
int IsEmulator(){return
!( *(int*)0x8000FFD0
);
(13.10.2012 14:26:25)