Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git] / sdcc / support / regression / ports / uc6502 / support.c
blob50a52f015120fc5664a4fa0a081ecf52c6fcd835
1 volatile static unsigned char *sif;
3 void
4 _putchar(unsigned char c)
6 *sif= 'p';
7 *sif= c;
8 return;
11 void
12 _initEmu(void)
14 sif= (unsigned char *)0xfff0;
17 void
18 _exitEmu(void)
20 *sif= 's';
21 return;