repo.or.cz
/
sdcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git]
/
sdcc
/
support
/
regression
/
ports
/
s08
/
support.c
blob
74f3d944b849e127cad79f8f2f9e234c765829e0
1
volatile
static unsigned char
*
sif
;
2
3
void
4
_putchar
(
unsigned char
c
)
5
{
6
*
sif
=
'p'
;
7
*
sif
=
c
;
8
return
;
9
c
;
10
__asm
11
.
db
0x9e
,
0xed
12
__endasm
;
13
}
14
15
void
16
_initEmu
(
void
)
17
{
18
sif
= (
unsigned char
*)
0x7f
;
19
}
20
21
void
22
_exitEmu
(
void
)
23
{
24
*
sif
=
's'
;
25
return
;
26
__asm
27
.
db
0x9e
,
0xec
28
__endasm
;
29
}