TARGET = HELLO TYPE = G1A SOURCES = hello.c include $(CASIO_SDK)/Makefile.common
int AddIn_main(...) while(1) GetKey(&key); if(key == KEY_CTRL_LEFT) x-=2; if(key == KEY_CTRL_RIGHT) x+=2; if(key == KEY_CTRL_EXE) break; draw(); Sleep(50); casio sdk
Use makeaddin or fxconv to inject icon.
unsigned short key; while(1) GetKey(&key); if(key == KEY_CTRL_EXE) break; TARGET = HELLO TYPE = G1A SOURCES = hello
1. Introduction The Casio SDK (Software Development Kit) allows developers to create native "Add-ins" ( .g1a for fx-9860G series, .g3a for fx-CG series) for Casio graphing calculators. These are not BASIC programs; they are compiled C/C++ binaries that run directly on the calculator's CPU, offering maximum performance and hardware access. if(key == KEY_CTRL_LEFT) x-=2
void draw() Bdisp_AllClr_DDVRAM(); PrintXY(x, y, "*", 0); Bdisp_PutDisp_DD();