Sign in
foss-eda-tools
/
third_party
/
shuttle
/
sky130
/
mpw-001
/
slot-032
/
08dd4834e6abdd71874acb712134f8a3f616a44d
/
.
/
verilog
/
dv
/
caravel
/
stub.c
blob: 4d9c970a01386d53d12a87953c52b3200c7b7266 [
file
] [
log
] [
blame
]
shalan
0d14e6e
2020-08-31 16:50:48 +0200
[
diff
] [
blame
]
1
void
putchar
(
char
c
)
2
{
3
if
(
c
==
'\n'
)
4
putchar
(
'\r'
);
5
reg_uart_data
=
c
;
6
}
7
8
void
print
(
const
char
*
p
)
9
{
10
while
(*
p
)
11
putchar
(*(
p
++));
12
}