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
/
uc65c02
/
support.c
blob
50a52f015120fc5664a4fa0a081ecf52c6fcd835
1
volatile
static unsigned char
*
sif
;
2
3
void
4
_putchar
(
unsigned char
c
)
5
{
6
*
sif
=
'p'
;
7
*
sif
=
c
;
8
return
;
9
}
10
11
void
12
_initEmu
(
void
)
13
{
14
sif
= (
unsigned char
*)
0xfff0
;
15
}
16
17
void
18
_exitEmu
(
void
)
19
{
20
*
sif
=
's'
;
21
return
;
22
}