ti83-sdk/lib83/exit.c

11 lines
107 B
C
Raw Normal View History

2023-10-07 23:32:30 +00:00
#include <stdlib.h>
void exit() __naked {
__asm
rst 0x28
.dw 0x4027
__endasm;
}