ti83-sdk/lib83/exit.c
2023-10-08 01:32:30 +02:00

11 lines
107 B
C

#include <stdlib.h>
void exit() __naked {
__asm
rst 0x28
.dw 0x4027
__endasm;
}