11 lines
107 B
C
11 lines
107 B
C
|
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
void exit() __naked {
|
||
|
__asm
|
||
|
rst 0x28
|
||
|
.dw 0x4027
|
||
|
__endasm;
|
||
|
}
|
||
|
|