Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git] / sdcc / support / regression / ports / s08 / support.c
blob74f3d944b849e127cad79f8f2f9e234c765829e0
1 volatile static unsigned char *sif;
3 void
4 _putchar(unsigned char c)
6 *sif= 'p';
7 *sif= c;
8 return;
9 c;
10 __asm
11 .db 0x9e, 0xed
12 __endasm;
15 void
16 _initEmu(void)
18 sif= (unsigned char *)0x7f;
21 void
22 _exitEmu(void)
24 *sif= 's';
25 return;
26 __asm
27 .db 0x9e, 0xec
28 __endasm;