14 lines
153 B
C
14 lines
153 B
C
|
|
#include <stdio.h>
|
|
|
|
void clrscr() __naked {
|
|
__asm
|
|
push ix
|
|
rst #0x28
|
|
.dw #0x4540
|
|
pop ix
|
|
ret
|
|
__endasm;
|
|
}
|
|
|