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
/
pdk14
/
support.c
blob
e4b122f40afc265c47a7f9673e032af8b56642a9
1
__sfr __at
0x3f
sif
;
2
3
void
4
_putchar
(
unsigned char
c
)
5
{
6
sif
=
'p'
;
7
sif
=
c
;
8
return
;
9
c
;
10
#ifndef __SDCC_STACK_AUTO
11
__asm
12
mov a
,
__putchar_PARM_1
+
0
13
.
db
0x00
,
0xff
14
__endasm
;
15
#else
16
__asm
17
mov a
,
sp
18
add a
,
#0xfc
19
mov p
,
a
20
idxm a
,
p
21
.
db
0x00
,
0xff
22
__endasm
;
23
#endif
24
}
25
26
void
27
_initEmu
(
void
)
28
{
29
}
30
31
void
32
_exitEmu
(
void
)
33
{
34
sif
=
's'
;
35
return
;
36
__asm
37
stopsys
38
__endasm
;
39
}