3a847d4356d52d9a186610560265658bf3e4ccab
[fw/sdcc] / support / regression / ports / hc08 / support.c
1
2 void
3 _putchar(unsigned char c)
4 {
5   _asm
6     .db 0x9e, 0xed
7   _endasm;
8 }
9
10 void
11 _exitEmu(void)
12 {
13   _asm
14     .db 0x9e, 0xec
15   _endasm;
16 }